Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Preprocessor / bpf-predefined-macros.c
blobbcb985f95426622872682d2169ad35ad5cb0ce8c
1 // RUN: %clang -E -target bpfel -x c -o - %s | FileCheck %s
2 // RUN: %clang -E -target bpfeb -x c -o - %s | FileCheck %s
4 #ifdef __bpf__
5 int b;
6 #endif
7 #ifdef __BPF__
8 int c;
9 #endif
10 #ifdef bpf
11 int d;
12 #endif
14 // CHECK: int b;
15 // CHECK: int c;
16 // CHECK-NOT: int d;