X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fcompiler%2Ftest%2Frun-is_compile_constant.c;h=a66f2e13e6c9c3749ae9357cb800517377d5863c;hb=ac9d55d8c5af9697be8c4dd4f27de61e3cb8bf95;hp=0a15280b61635db92b782aa1eea01f7ed91b2aa3;hpb=89f1301ed2b65cdb4730bb28c42428873a69faec;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");