We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec6796d commit ce28da1Copy full SHA for ce28da1
test/third_party/poppler/goo/GooLikely.h
@@ -11,9 +11,7 @@
11
#ifndef GOOLIKELY_H
12
#define GOOLIKELY_H
13
14
-// XXX EMSCRIPTEN: Remove gcc-specific detection of __builtin_expect.
15
-// #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
16
-#ifdef __EMSCRIPTEN__
+#if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
17
# define likely(x) __builtin_expect((x), 1)
18
# define unlikely(x) __builtin_expect((x), 0)
19
#else
0 commit comments