Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / cl-options.cu
blob8b0c2ba421b36212119269b76da0e70d42d26089
1 // Verify that we don't pass unwanted options to device-side compilation when
2 // clang-cl is used for CUDA compilation.
3 // Note: %s must be preceded by --, otherwise it may be interpreted as a
4 // command-line option, e.g. on Mac where %s is commonly under /Users.
6 // REQUIRES: x86-registered-target
7 // REQUIRES: nvptx-registered-target
9 // -stack-protector should not be passed to device-side CUDA compilation
10 // RUN: not %clang_cl -### -nocudalib -nocudainc -- %s 2>&1 | FileCheck -check-prefix=GS-default %s
11 // GS-default: "-cc1" "-triple" "nvptx{{(64)?}}-nvidia-cuda"
12 // GS-default-NOT: "-stack-protector"
13 // GS-default: "-cc1" "-triple"
14 // GS-default: "-stack-protector" "2"
16 // -exceptions should be passed to device-side compilation.
17 // RUN: not %clang_cl /c /GX -### -nocudalib -nocudainc -- %s 2>&1 | FileCheck -check-prefix=GX %s
18 // GX: "-cc1" "-triple" "nvptx{{(64)?}}-nvidia-cuda"
19 // GX-NOT: "-fcxx-exceptions"
20 // GX-NOT: "-fexceptions"
21 // GX: "-cc1" "-triple"
22 // GX: "-fcxx-exceptions" "-fexceptions"
24 // /Gd should not override default calling convention on device side.
25 // RUN: not %clang_cl /c /Gd -### -nocudalib -nocudainc -- %s 2>&1 | FileCheck -check-prefix=Gd %s
26 // Gd: "-cc1" "-triple" "nvptx{{(64)?}}-nvidia-cuda"
27 // Gd-NOT: "-fcxx-exceptions"
28 // Gd-NOT: "-fdefault-calling-conv=cdecl"
29 // Gd: "-cc1" "-triple"
30 // Gd: "-fdefault-calling-conv=cdecl"