15 lines · plain
1// Make sure SystemZ defaults to using the integrated assembler2 3// RUN: %clang -target s390x-ibm-linux -### -c %s 2>&1 \4// RUN: | FileCheck -check-prefix=IAS %s5 6// RUN: %clang -target s390x-ibm-linux -integrated-as -### -c %s 2>&1 \7// RUN: | FileCheck -check-prefix=IAS %s8// IAS: "-cc1as"{{.*}} "-target-cpu" "z10"9 10// RUN: %clang -target s390x-ibm-linux -no-integrated-as -### -c %s 2>&1 \11// RUN: | FileCheck -check-prefix=NO-IAS %s12// NO-IAS-NOT: -cc1as13// NO-IAS: "-march=z10"14 15