Explorar el Código

silly me, thats not going to work.

Eric Andersen hace 21 años
padre
commit
85a056b071
Se han modificado 1 ficheros con 2 adiciones y 3 borrados
  1. 2 3
      include/features.h

+ 2 - 3
include/features.h

@@ -421,9 +421,8 @@ uClibc was built without large file support enabled.
 #if __GNUC__ == 2 && __GNUC_MINOR__ < 96
 #define __builtin_expect(x, expected_value) (x)
 #endif
-
-#define likely(x)		__builtin_expect(!((int)(x)),0)
-#define unlikely(x)		__builtin_expect(((int)(x)),0)
+#define likely(x)      __builtin_expect((!!(x)),1)
+#define unlikely(x)    __builtin_expect((x),0)
 
 /* --- this is added to integrate linuxthreads */
 #define __USE_UNIX98            1