[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / cuda-no-stack-protector.cu
blob2bcf481855175b8094ed31ff9e6ba14a0572e1d6
1 // Check that -stack-protector doesn't get passed down to device-side
2 // compilation.
3 //
4 //
5 // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 \
6 // RUN:   -fstack-protector-all %s 2>&1 | \
7 // RUN: FileCheck %s
8 //
9 // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 \
10 // RUN:   -fstack-protector-strong %s 2>&1 | \
11 // RUN: FileCheck %s
13 // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 \
14 // RUN:   -fstack-protector %s 2>&1 | \
15 // RUN: FileCheck %s
17 // CHECK-NOT: error: unsupported option '-fstack-protector
18 // CHECK-DAG: "-fcuda-is-device"
19 // CHECK-NOT: "-stack-protector"
20 // CHECK-NOT: "-stack-protector-buffer-size"
21 // CHECK-DAG: "-triple" "x86_64-unknown-linux-gnu"
22 // CHECK: "-stack-protector"