brintos

brintos / llvm-project-archived public Read only

0
0
Text · 615 B · 4e842cd Raw
16 lines · c
1// Test integrated-as is called by default on AIX.2 3// Check powerpc-ibm-aix7.1.0.0, 32-bit.4// RUN: %clang %s -### -c 2>&1 \5// RUN:         --target=powerpc-ibm-aix7.1.0.0 \6// RUN:   | FileCheck --check-prefix=CHECK-IAS32 %s7// CHECK-IAS32-NOT: "-a32"8// CHECK-IAS32: "-cc1" "-triple" "powerpc-ibm-aix7.1.0.0"{{.*}}"-emit-obj"9 10// Check powerpc64-ibm-aix7.1.0.0, 64-bit.11// RUN: %clang %s -### -c 2>&1 \12// RUN:         --target=powerpc64-ibm-aix7.1.0.0 \13// RUN:   | FileCheck --check-prefix=CHECK-IAS64 %s14// CHECK-IAS64-NOT: "-a64"15// CHECK-IAS64: "-cc1" "-triple" "powerpc64-ibm-aix7.1.0.0"{{.*}}"-emit-obj"16