mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 12:05:48 -04:00

"DefineStd(Builder, "bpf", Opts)" generates the following three macros: bpf __bpf __bpf__ and the macro "bpf" is due to the fact that the target language is C which allows GNU extensions. The name "bpf" could be easily used as variable name or type field name. For example, in current linux kernel, there are four places where bpf is used as a field name. If the corresponding types are included in bpf program, the compilation error will occur. This patch removed predefined macro "bpf" as well as "__bpf" which is rarely used if used at all. Signed-off-by: Yonghong Song <yhs@fb.com> Differential Revision: https://reviews.llvm.org/D61173 llvm-svn: 359310
17 lines
260 B
C
17 lines
260 B
C
// RUN: %clang -E -target bpfel -x c -o - %s | FileCheck %s
|
|
// RUN: %clang -E -target bpfeb -x c -o - %s | FileCheck %s
|
|
|
|
#ifdef __bpf__
|
|
int b;
|
|
#endif
|
|
#ifdef __BPF__
|
|
int c;
|
|
#endif
|
|
#ifdef bpf
|
|
int d;
|
|
#endif
|
|
|
|
// CHECK: int b;
|
|
// CHECK: int c;
|
|
// CHECK-NOT: int d;
|