[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / amdgcn-gz-options.cl
blob0d09a714b0326bbe5132202300366da1a560c1fa
1 // REQUIRES: zlib, amdgpu-registered-target
3 // RUN: %clang -### -target amdgcn-amd-amdhsa -gz=none -x assembler %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_NONE %s
4 // RUN: %clang -### -target amdgcn-amd-amdhsa -gz=none %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_NONE %s
5 // CHECK-OPT_GZ_EQ_NONE: {{.* "-cc1(as)?".* "--compress-debug-sections=none"}}
6 // CHECK-OPT_GZ_EQ_NONE: "--compress-debug-sections=none"
8 // RUN: %clang -### -target amdgcn-amd-amdhsa -gz=zlib -x assembler %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_ZLIB %s
9 // RUN: %clang -### -target amdgcn-amd-amdhsa -gz=zlib %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_ZLIB %s
10 // CHECK-OPT_GZ_EQ_ZLIB: {{.* "-cc1(as)?".* "--compress-debug-sections=zlib"}}
11 // CHECK-OPT_GZ_EQ_ZLIB: "--compress-debug-sections=zlib"