[OpenACC] Enable 'attach' clause for combined constructs
[llvm-project.git] / clang / test / Driver / hip-code-object-version.hip
blob9d0afaeaa967d3bb7e5f08bcc5399306fd237684
1 // Check bundle ID for code object version 4.
3 // RUN: not %clang -### --target=x86_64-linux-gnu \
4 // RUN:   -mcode-object-version=4 \
5 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
6 // RUN:   %s 2>&1 | FileCheck -check-prefix=V4 %s
8 // V4: "-mcode-object-version=4"
9 // V4: "-mllvm" "--amdhsa-code-object-version=4"
10 // V4: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
12 // Check bundle ID for code object version 5.
14 // RUN: not %clang -### --target=x86_64-linux-gnu \
15 // RUN:   -mcode-object-version=5 \
16 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
17 // RUN:   %s 2>&1 | FileCheck -check-prefix=V5 %s
19 // V5: "-mcode-object-version=5"
20 // V5: "-mllvm" "--amdhsa-code-object-version=5"
21 // V5: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
23 // Check bundle ID for code object version 6.
25 // RUN: not %clang -### --target=x86_64-linux-gnu \
26 // RUN:   -mcode-object-version=6 \
27 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
28 // RUN:   %s 2>&1 | FileCheck -check-prefix=V6 %s
30 // V6: warning: code object v6 is still in development and not ready for production use yet; use at your own risk
31 // V6: "-mcode-object-version=6"
32 // V6: "-mllvm" "--amdhsa-code-object-version=6"
33 // V6: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
36 // Check bundle ID for code object version default
38 // RUN: %clang -### --target=x86_64-linux-gnu \
39 // RUN:   --offload-arch=gfx906 -nogpuinc -nogpulib \
40 // RUN:   %s 2>&1 | FileCheck -check-prefix=VD %s
42 // VD: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
44 // Check invalid code object version option.
46 // RUN: not %clang -### --target=x86_64-linux-gnu \
47 // RUN:   -mcode-object-version=1 \
48 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
49 // RUN:   %s 2>&1 | FileCheck -check-prefix=INVALID_1 %s
50 // INVALID_1: error: invalid integral value '1' in '-mcode-object-version=1'
51 // INVALID_1-NOT: error: invalid integral value
53 // RUN: not %clang -### --target=x86_64-linux-gnu \
54 // RUN:   -mcode-object-version=2 \
55 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
56 // RUN:   %s 2>&1 | FileCheck -check-prefix=INVALID_2 %s
57 // INVALID_2: error: invalid integral value '2' in '-mcode-object-version=2'
58 // INVALID_2-NOT: error: invalid integral value
60 // RUN: not %clang -### --target=x86_64-linux-gnu \
61 // RUN:   -mcode-object-version=3 \
62 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
63 // RUN:   %s 2>&1 | FileCheck -check-prefix=INVALID_3 %s
64 // INVALID_3: error: invalid integral value '3' in '-mcode-object-version=3'
65 // INVALID_3-NOT: error: invalid integral value
67 // Check LLVM code object version option --amdhsa-code-object-version
68 // is passed to -cc1 and -cc1as, and -mcode-object-version is passed
69 // to -cc1 but not -cc1as.
71 // RUN: not %clang -### --target=x86_64-linux-gnu \
72 // RUN:   -mcode-object-version=5 \
73 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm -save-temps \
74 // RUN:   %s 2>&1 | FileCheck -check-prefix=CC1 %s
76 // CC1: "-cc1" {{.*}}"-mcode-object-version=5" {{.*}}"-mllvm" "--amdhsa-code-object-version=5"
77 // CC1: "-cc1as" {{.*}}"-mllvm" "--amdhsa-code-object-version=5"
79 // RUN: not %clang -### --target=x86_64-linux-gnu \
80 // RUN:   -mcode-object-version=5 \
81 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm -save-temps \
82 // RUN:   %s 2>&1 | FileCheck -check-prefix=CC1NEG %s
84 // CC1NEG-NOT: "-cc1as" {{.*}}"-mcode-object-version=5"