• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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;
17