blob: bcb985f95426622872682d2169ad35ad5cb0ce8c [file] [log] [blame]
Yonghong Song51a4a0d2019-04-26 15:35:51 +00001// 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__
5int b;
6#endif
7#ifdef __BPF__
8int c;
9#endif
10#ifdef bpf
11int d;
12#endif
13
14// CHECK: int b;
15// CHECK: int c;
16// CHECK-NOT: int d;