aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro_disable3.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-26 17:46:33 +0000
committerChris Lattner <sabre@nondot.org>2010-03-26 17:46:33 +0000
commitc7cf27f3cb7839d2bf65cf580db7b7d034196043 (patch)
tree6339a808da04c51d30d063a3e908b584c0e022a3 /test/Preprocessor/macro_disable3.c
parent86851109b8f70eee7a743bc914219e4f0d8bf9f4 (diff)
merge all the macro disable tests by using filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/macro_disable3.c')
-rw-r--r--test/Preprocessor/macro_disable3.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Preprocessor/macro_disable3.c b/test/Preprocessor/macro_disable3.c
deleted file mode 100644
index eab0a5e046..0000000000
--- a/test/Preprocessor/macro_disable3.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %clang_cc1 %s -E | FileCheck -strict-whitespace %s
-// Check for C99 6.10.3.4p2.
-
-#define f(a) f(x * (a))
-#define x 2
-#define z z[0]
-f(f(z));
-
-// CHECK: f(2 * (f(2 * (z[0]))));
-