diff options
Diffstat (limited to 'clang/test/Preprocessor/macro_undef.c')
-rw-r--r-- | clang/test/Preprocessor/macro_undef.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/macro_undef.c b/clang/test/Preprocessor/macro_undef.c new file mode 100644 index 0000000..c842c85 --- /dev/null +++ b/clang/test/Preprocessor/macro_undef.c @@ -0,0 +1,4 @@ +// RUN: %clang_cc1 -dM -undef -Dfoo=1 -E %s | FileCheck %s + +// CHECK-NOT: #define __clang__ +// CHECK: #define foo 1 |