Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / hip-std.hip
blobad29f04dbbe7ff954ea6d83b8c534497140cfbe9
1 // REQUIRES: x86-registered-target
2 // REQUIRES: amdgpu-registered-target
4 // RUN: %clang -### -nogpulib -nogpuinc --target=x86_64-unknown-linux-gnu -offload-arch=gfx906 %s \
5 // RUN:   2>&1 | FileCheck -check-prefixes=DEFAULT %s
6 // DEFAULT: "-cc1"{{.*}}"-fcuda-is-device"{{.*}}
7 // DEFAULT-NOT: "-std="{{.*}}
8 // DEFAULT: "-cc1"{{.*}}
9 // DEFAULT-NOT: "-std="{{.*}}
11 // RUN: %clang -### -nogpulib -nogpuinc --target=x86_64-unknown-linux-gnu -offload-arch=gfx906 %s \
12 // RUN:   -std=c++17 %s 2>&1 | FileCheck -check-prefixes=SPECIFIED %s
13 // SPECIFIED: "-cc1"{{.*}}"-fcuda-is-device"{{.*}}"-std=c++17"
14 // SPECIFIED: "-cc1"{{.*}}"-std=c++17"
16 // RUN: %clang -### -nogpulib -nogpuinc --target=x86_64-pc-windows-msvc -offload-arch=gfx906 %s \
17 // RUN:   2>&1 | FileCheck -check-prefixes=MSVC-DEF %s
18 // MSVC-DEF: "-cc1"{{.*}}"-fcuda-is-device"{{.*}}
19 // MSVC-DEF-NOT: "-std="{{.*}}
20 // MSVC-DEF: "-cc1"{{.*}}
21 // MSVC-DEF-NOT: "-std="{{.*}}
23 // RUN: %clang -### -nogpulib -nogpuinc --target=x86_64-pc-windows-msvc -offload-arch=gfx906 %s \
24 // RUN:   -std=c++17 %s 2>&1 | FileCheck -check-prefixes=MSVC-SPEC %s
25 // MSVC-SPEC: "-cc1"{{.*}}"-fcuda-is-device"{{.*}}"-std=c++17"
26 // MSVC-SPEC: "-cc1"{{.*}}"-std=c++17"