summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/macro_fn_varargs_iso.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Preprocessor/macro_fn_varargs_iso.c')
-rw-r--r--test/Preprocessor/macro_fn_varargs_iso.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Preprocessor/macro_fn_varargs_iso.c b/test/Preprocessor/macro_fn_varargs_iso.c
new file mode 100644
index 0000000..78ad212
--- /dev/null
+++ b/test/Preprocessor/macro_fn_varargs_iso.c
@@ -0,0 +1,11 @@
+
+// RUN: clang-cc -E %s | grep 'foo{a, b, c, d, e}' &&
+// RUN: clang-cc -E %s | grep 'foo2{d, C, B}' &&
+// RUN: clang-cc -E %s | grep 'foo2{d,e, C, B}'
+
+#define va1(...) foo{a, __VA_ARGS__, e}
+va1(b, c, d)
+#define va2(a, b, ...) foo2{__VA_ARGS__, b, a}
+va2(B, C, d)
+va2(B, C, d,e)
+
OpenPOWER on IntegriCloud