From ec57c94ba2333d08cad49be31ade353af46b5709 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 13 Jan 2013 13:55:22 +0100 Subject: configure: remove __builtin_expect check Change the only usage of HAVE_BUILTIN_EXPECT, demux.h, to use an #ifdef instead. In theory, a configure check is better, but nobody does it this way anyway, and we seek to reduce the configure script. --- configure | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'configure') diff --git a/configure b/configure index fb69fa5270..4db833de2e 100755 --- a/configure +++ b/configure @@ -1246,25 +1246,6 @@ fi echores "$_gettext" -echocheck "__builtin_expect" -# GCC branch prediction hint -cat > $TMPC << EOF -static int foo(int a) { - a = __builtin_expect(a, 10); - return a == 10 ? 0 : 1; -} -int main(void) { return foo(10) && foo(0); } -EOF -_builtin_expect=no -cc_check && _builtin_expect=yes -if test "$_builtin_expect" = yes ; then - def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1' -else - def_builtin_expect='#undef HAVE_BUILTIN_EXPECT' -fi -echores "$_builtin_expect" - - echocheck "mkstemp" _mkstemp=no define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes @@ -3324,7 +3305,6 @@ $def_vsscanf /* system-specific features */ $def_asmalign_pot -$def_builtin_expect $def_dl $def_dos_paths $def_iconv -- cgit v1.2.3