mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-06 21:51:08 +00:00
c6e68daac0
llvm-svn: 166280
16 lines
275 B
C++
16 lines
275 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
|
|
RUN: %clang_cc1 -E %s -x c++ -verify -Wundef
|
|
*/
|
|
// expected-no-diagnostics
|
|
|
|
#if true
|
|
block_1
|
|
#endif
|
|
|
|
#if false
|
|
block_2
|
|
#endif
|
|
|