mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
5b9f4891d7
llvm-svn: 39214
16 lines
237 B
C++
16 lines
237 B
C++
// RUN: clang -DA=1 -E %s | grep 'int a = 927 == 927' &&
|
|
// RUN: clang -E %s | grep 'int a = 37 == 37'
|
|
#if not defined(A)
|
|
#define X 37
|
|
#else
|
|
#define X 927
|
|
#endif
|
|
|
|
#if ! defined(A)
|
|
#define Y 37
|
|
#else
|
|
#define Y 927
|
|
#endif
|
|
|
|
int a = X == Y;
|