[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / ppc-crbits.cpp
blob3ed56308cb52679e89b51ace43b145afb5f60ffc
1 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr10 \
2 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
3 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr10 \
4 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
6 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr9 \
7 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
8 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr9 \
9 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
11 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr8 \
12 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
13 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr8 \
14 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
16 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr7 \
17 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
18 // RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -mcpu=pwr7 \
19 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
21 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr10 \
22 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
23 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr10 \
24 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
26 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr9 \
27 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
28 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr9 \
29 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
31 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr8 \
32 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
33 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr8 \
34 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
36 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr7 \
37 // RUN: -mcrbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-CRBITS %s
38 // RUN: %clang -target powerpc-ibm-aix %s -### -mcpu=pwr7 \
39 // RUN: -mno-crbits -o %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOCRBITS %s
42 // CHECK-NOCRBITS: "-target-feature" "-crbits"
43 // CHECK-CRBITS: "-target-feature" "+crbits"
46 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr10 -emit-llvm \
47 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
48 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr10 -mcrbits \
49 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
50 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr10 -mno-crbits \
51 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
53 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr9 -emit-llvm \
54 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
55 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr9 -mcrbits \
56 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
57 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr9 -mno-crbits \
58 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
60 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr8 -emit-llvm \
61 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
62 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr8 -mcrbits \
63 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
64 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr8 -mno-crbits \
65 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
67 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr7 -emit-llvm \
68 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
69 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr7 -mcrbits \
70 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
71 // RUN: %clang -target powerpc64le-unknown-linux-gnu -mcpu=pwr7 -mno-crbits \
72 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
74 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr10 -emit-llvm \
75 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
76 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr10 -mcrbits \
77 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
78 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr10 -mno-crbits \
79 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
81 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr9 -emit-llvm \
82 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
83 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr9 -mcrbits \
84 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
85 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr9 -mno-crbits \
86 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
88 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr8 -emit-llvm \
89 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
90 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr8 -mcrbits \
91 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
92 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr8 -mno-crbits \
93 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
95 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr7 -emit-llvm \
96 // RUN: -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
97 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr7 -mcrbits \
98 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-CRBITS
99 // RUN: %clang -target powerpc-ibm-aix -mcpu=pwr7 -mno-crbits \
100 // RUN: -emit-llvm -S %s -o - | FileCheck %s --check-prefix=HAS-NOCRBITS
103 // HAS-CRBITS: main(
104 // HAS-CRBITS: attributes #0 = {
105 // HAS-CRBITS-SAME: +crbits
106 // HAS-NOCRBITS: main(
107 // HAS-NOCRBITS: attributes #0 = {
108 // HAS-NOCRBITS-SAME: -crbits
110 int main(int argc, char *argv[]) {
111 return 0;