summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-16 18:26:01 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-16 18:26:01 +0000
commit7136bb0105e37607c98a6290a3355f9490a70993 (patch)
treee06e371f38bcadb1dc9d8189f75d2dc5ba65750b /configure
parentaf21f25f31c0f157d1476f4aa951767a182b2356 (diff)
downloadmpv-7136bb0105e37607c98a6290a3355f9490a70993.tar.bz2
mpv-7136bb0105e37607c98a6290a3355f9490a70993.tar.xz
Move likely/unlikely macros to libmpdemux/demuxer.h where they are used.
config.h should only contain option definitions, no logic. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27786 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 0 insertions, 7 deletions
diff --git a/configure b/configure
index ab0a770b87..1448ae024a 100755
--- a/configure
+++ b/configure
@@ -8166,13 +8166,6 @@ $_def_restrict_keyword
/* __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
/* compiler support for named assembler arguments */
$_def_named_asm_args