1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
14 lines
200 B
C++
14 lines
200 B
C++
/* RUN: %clang_cc1 -E %s -x c++ | grep block_1
|
|
RUN: %clang_cc1 -E %s -x c++ | not grep block_2
|
|
RUN: %clang_cc1 -E %s -x c | not grep block
|
|
*/
|
|
|
|
#if true
|
|
block_1
|
|
#endif
|
|
|
|
#if false
|
|
block_2
|
|
#endif
|
|
|