Clang Project
clang_source_code
/
test
/
Preprocessor
/
macro_undef.c
1
// RUN: %clang_cc1 -dM -undef -Dfoo=1 -E %s | FileCheck %s
2
3
// CHECK-NOT: #define __clang__
4
// CHECK: #define foo 1
5