Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / target-id-macros.cl
blob71c33a5ebff1c38b4b8b0fd627e5b37fcaf01452
1 // REQUIRES: x86-registered-target
2 // REQUIRES: amdgpu-registered-target
4 // RUN: %clang -E -dM -target amdgcn-amd-amdhsa \
5 // RUN: -mcpu=gfx908:xnack+:sramecc- -nogpulib -o - %s 2>&1 \
6 // RUN: | FileCheck -check-prefixes=PROC,ID1 %s
8 // RUN: %clang -E -dM -target amdgcn-amd-amdpal \
9 // RUN: -mcpu=gfx908:xnack+:sramecc- -nogpulib -o - %s 2>&1 \
10 // RUN: | FileCheck -check-prefixes=PROC,ID1 %s
12 // RUN: %clang -E -dM -target amdgcn--mesa3d \
13 // RUN: -mcpu=gfx908:xnack+:sramecc- -nogpulib -o - %s 2>&1 \
14 // RUN: | FileCheck -check-prefixes=PROC,ID1 %s
16 // RUN: %clang -E -dM -target amdgcn-amd-amdhsa \
17 // RUN: -mcpu=gfx908 -nogpulib -o - %s 2>&1 \
18 // RUN: | FileCheck -check-prefixes=PROC,ID2 %s
20 // RUN: %clang -E -dM -target amdgcn-amd-amdhsa \
21 // RUN: -nogpulib -o - %s 2>&1 \
22 // RUN: | FileCheck -check-prefixes=NONE %s
24 // PROC-DAG: #define __amdgcn_processor__ "gfx908"
26 // ID1-DAG: #define __amdgcn_feature_xnack__ 1
27 // ID1-DAG: #define __amdgcn_feature_sramecc__ 0
28 // ID1-DAG: #define __amdgcn_target_id__ "gfx908:sramecc-:xnack+"
30 // ID2-DAG: #define __amdgcn_target_id__ "gfx908"
31 // ID2-NOT: #define __amdgcn_feature_xnack__
32 // ID2-NOT: #define __amdgcn_feature_sramecc__
34 // NONE-NOT: #define __amdgcn_processor__
35 // NONE-NOT: #define __amdgcn_feature_xnack__
36 // NONE-NOT: #define __amdgcn_feature_sramecc__
37 // NONE-NOT: #define __amdgcn_target_id__