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