diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-10-05 13:42:19 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-10-08 10:25:36 -0800 |
commit | bf8c59996b3fb2a940827d12438a9e18eca6db4c (patch) | |
tree | 86366ab663beeeeec3554ce3407159aaacd70714 /ccan/compiler/test/run-is_compile_constant.c | |
parent | 85ee972555948337bb1a58f0702a4da95db6758f (diff) |
Update for new superblock options; makefile improvements
Diffstat (limited to 'ccan/compiler/test/run-is_compile_constant.c')
-rw-r--r-- | ccan/compiler/test/run-is_compile_constant.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/ccan/compiler/test/run-is_compile_constant.c b/ccan/compiler/test/run-is_compile_constant.c deleted file mode 100644 index a66f2e13..00000000 --- a/ccan/compiler/test/run-is_compile_constant.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <ccan/compiler/compiler.h> -#include <ccan/tap/tap.h> - -int main(int argc, char *argv[]) -{ - plan_tests(2); - - ok1(!IS_COMPILE_CONSTANT(argc)); -#if HAVE_BUILTIN_CONSTANT_P - ok1(IS_COMPILE_CONSTANT(7)); -#else - pass("If !HAVE_BUILTIN_CONSTANT_P, IS_COMPILE_CONSTANT always false"); -#endif - return exit_status(); -} |