[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / hipspv-pass-plugin.hip
blob10add8bab8af15eeaf11e128a7d49b442fca617c
1 // REQUIRES: x86-registered-target
2 // UNSUPPORTED: system-windows
4 // RUN: %clang -### -target x86_64-linux-gnu --offload=spirv64 \
5 // RUN:  --hip-path=%S/Inputs/hipspv -nogpuinc %s \
6 // RUN: 2>&1 | FileCheck --check-prefixes=FROM-HIP-PATH %s
8 // RUN: %clang -### -target x86_64-linux-gnu --offload=spirv64 \
9 // RUN: -nogpuinc -nogpulib --hipspv-pass-plugin=%S/Inputs/pass-plugin.so %s \
10 // RUN: 2>&1 | FileCheck --check-prefixes=FROM-OPTION %s
12 // RUN: %clang -### -target x86_64-linux-gnu --offload=spirv64 \
13 // RUN: -nogpuinc -nogpulib --hipspv-pass-plugin=foo.so %s \
14 // RUN: 2>&1 | FileCheck --check-prefixes=FROM-OPTION-INVALID %s
16 // RUN: %clang -### -target x86_64-linux-gnu --offload=spirv64 \
17 // RUN: -nogpuinc -nogpulib %s \
18 // RUN: 2>&1 | FileCheck --check-prefixes=NO-PLUGIN %s
20 // FROM-HIP-PATH: {{".*opt"}} {{".*.bc"}} "-load-pass-plugin"
21 // FROM-HIP-PATH-SAME: {{".*/Inputs/hipspv/lib/libLLVMHipSpvPasses.so"}}
22 // FROM-OPTION: {{".*opt"}} {{".*.bc"}} "-load-pass-plugin"
23 // FROM-OPTION-SAME: {{".*/Inputs/pass-plugin.so"}}
24 // FROM-OPTION-INVALID: error: no such file or directory: 'foo.so'
25 // NO-PLUGIN-NOT: {{".*opt"}} {{".*.bc"}} "-load-pass-plugin"
26 // NO-PLUGIN-NOT: {{".*/Inputs/hipspv/lib/libLLVMHipSpvPasses.so"}}