summaryrefslogtreecommitdiff
path: root/ccan/compiler
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2017-10-05 13:42:19 -0800
committerKent Overstreet <kent.overstreet@gmail.com>2017-10-08 10:25:36 -0800
commitbf8c59996b3fb2a940827d12438a9e18eca6db4c (patch)
tree86366ab663beeeeec3554ce3407159aaacd70714 /ccan/compiler
parent85ee972555948337bb1a58f0702a4da95db6758f (diff)
Update for new superblock options; makefile improvements
Diffstat (limited to 'ccan/compiler')
-rw-r--r--ccan/compiler/test/compile_fail-printf.c22
-rw-r--r--ccan/compiler/test/run-is_compile_constant.c15
2 files changed, 0 insertions, 37 deletions
diff --git a/ccan/compiler/test/compile_fail-printf.c b/ccan/compiler/test/compile_fail-printf.c
deleted file mode 100644
index 8f34ae5a..00000000
--- a/ccan/compiler/test/compile_fail-printf.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <ccan/compiler/compiler.h>
-
-static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...)
-{
-}
-
-int main(int argc, char *argv[])
-{
- unsigned int i = 0;
-
- my_printf(1, "Not a pointer "
-#ifdef FAIL
- "%p",
-#if !HAVE_ATTRIBUTE_PRINTF
-#error "Unfortunately we don't fail if !HAVE_ATTRIBUTE_PRINTF."
-#endif
-#else
- "%i",
-#endif
- i);
- return 0;
-}
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();
-}