summaryrefslogtreecommitdiffstats
path: root/test/Sema/va_arg_x86_32.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/va_arg_x86_32.c')
-rw-r--r--test/Sema/va_arg_x86_32.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Sema/va_arg_x86_32.c b/test/Sema/va_arg_x86_32.c
new file mode 100644
index 0000000..850d324
--- /dev/null
+++ b/test/Sema/va_arg_x86_32.c
@@ -0,0 +1,6 @@
+// RUN: clang-cc -fsyntax-only -verify -triple=i686-pc-linux-gnu %s
+
+int a() {
+ __builtin_va_arg((char*)0, int); // expected-error {{expression is not assignable}}
+ __builtin_va_arg((void*){0}, int); // expected-error {{first argument to 'va_arg' is of type 'void *'}}
+}
OpenPOWER on IntegriCloud