mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 00:58:36 -04:00
19 lines
431 B
C++
19 lines
431 B
C++
|
|
// RUN: clang-cc -DA=1 -DB=1 -E %s | grep 'int a = 37 == 37' &&
|
||
|
|
// RUN: clang-cc -DA=0 -DB=1 -E %s | grep 'int a = 37 == 37' &&
|
||
|
|
// RUN: clang-cc -DA=1 -DB=0 -E %s | grep 'int a = 37 == 37' &&
|
||
|
|
// RUN: clang-cc -DA=0 -DB=0 -E %s | grep 'int a = 927 == 927' &&
|
||
|
|
// RUN: clang-cc -E %s | grep 'int a = 927 == 927'
|
||
|
|
#if A bitor B
|
||
|
|
#define X 37
|
||
|
|
#else
|
||
|
|
#define X 927
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if A | B
|
||
|
|
#define Y 37
|
||
|
|
#else
|
||
|
|
#define Y 927
|
||
|
|
#endif
|
||
|
|
|
||
|
|
int a = X == Y;
|