X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fcompiler%2Ftest%2Frun-is_compile_constant.c;fp=ccan%2Fcompiler%2Ftest%2Frun-is_compile_constant.c;h=a66f2e13e6c9c3749ae9357cb800517377d5863c;hb=1dcd3ad51bbeb4ba8048b08d62278df8e428031a;hp=0a15280b61635db92b782aa1eea01f7ed91b2aa3;hpb=9450cb3c1dff76e09305d18687291bce4221e9b6;p=ccan diff --git a/ccan/compiler/test/run-is_compile_constant.c b/ccan/compiler/test/run-is_compile_constant.c index 0a15280b..a66f2e13 100644 --- a/ccan/compiler/test/run-is_compile_constant.c +++ b/ccan/compiler/test/run-is_compile_constant.c @@ -6,7 +6,7 @@ int main(int argc, char *argv[]) plan_tests(2); ok1(!IS_COMPILE_CONSTANT(argc)); -#ifdef HAVE_BUILTIN_CONSTANT_P +#if HAVE_BUILTIN_CONSTANT_P ok1(IS_COMPILE_CONSTANT(7)); #else pass("If !HAVE_BUILTIN_CONSTANT_P, IS_COMPILE_CONSTANT always false");