From 5b123fde96ffc953f46c126325351b4049e93f8c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 29 Jul 2006 07:08:39 +0000 Subject: [PATCH] new testcase llvm-svn: 38790 --- clang/test/Preprocessor/c99-6_10_3_4_p7.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 clang/test/Preprocessor/c99-6_10_3_4_p7.c diff --git a/clang/test/Preprocessor/c99-6_10_3_4_p7.c b/clang/test/Preprocessor/c99-6_10_3_4_p7.c new file mode 100644 index 000000000000..88957dfb6752 --- /dev/null +++ b/clang/test/Preprocessor/c99-6_10_3_4_p7.c @@ -0,0 +1,9 @@ +// Example from C99 6.10.3.4p7 + +// RUN: clang -E %s | grep -F 'int j[] = { 123, 45, 67, 89,' && +// RUN: clang -E %s | grep -F '10, 11, 12, };' + +#define t(x,y,z) x ## y ## z +int j[] = { t(1,2,3), t(,4,5), t(6,,7), t(8,9,), +t(10,,), t(,11,), t(,,12), t(,,) }; +