repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
bpf-predefined-macros.c
blob
bcb985f95426622872682d2169ad35ad5cb0ce8c
1
// RUN: %clang -E -target bpfel -x c -o - %s | FileCheck %s
2
// RUN: %clang -E -target bpfeb -x c -o - %s | FileCheck %s
3
4
#ifdef __bpf__
5
int
b
;
6
#endif
7
#ifdef __BPF__
8
int
c
;
9
#endif
10
#ifdef bpf
11
int
d
;
12
#endif
13
14
// CHECK: int b;
15
// CHECK: int c;
16
// CHECK-NOT: int d;