changeset 27675:e8a6f7b7ed4e

Do not duplicate likely/unlikely #defines from libmpeg2/libavcodec in config.h.
author diego
date Sat, 04 Oct 2008 11:47:00 +0000
parents c8a241b4b92a
children 67fc228e59d7
files configure
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Oct 04 11:42:39 2008 +0000
+++ b/configure	Sat Oct 04 11:47:00 2008 +0000
@@ -8033,13 +8033,6 @@
 
 /* __builtin_expect branch prediction hint */
 $_def_builtin_expect
-#ifdef HAVE_BUILTIN_EXPECT
-#define likely(x) __builtin_expect ((x) != 0, 1)
-#define unlikely(x) __builtin_expect ((x) != 0, 0)
-#else
-#define likely(x) (x)
-#define unlikely(x) (x)
-#endif
 
 /* attribute(used) as needed by some compilers */
 #if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)