Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Preprocessor/bpf-predefined-macros.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 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; |