blob: 11bf0caee1fa8c59432733fb21d23b2827dae4a0 [file] [log] [blame]
Richard Sandiford4652d892013-07-19 16:51:51 +00001// Check passing options to the assembler for various linux targets.
Evgeniy Stepanov70cb3d62012-04-10 09:05:40 +00002//
3// RUN: %clang -target arm-linux -### \
4// RUN: -no-integrated-as -c %s 2>&1 \
5// RUN: | FileCheck -check-prefix=ARM %s
Evgeniy Stepanoved943f62012-04-20 09:03:40 +00006// CHECK-ARM: as{{(.exe)?}}" "-mfloat-abi=soft"
Evgeniy Stepanov70cb3d62012-04-10 09:05:40 +00007//
8// RUN: %clang -target arm-linux -mcpu=cortex-a8 -### \
9// RUN: -no-integrated-as -c %s 2>&1 \
10// RUN: | FileCheck -check-prefix=ARM-MCPU %s
Evgeniy Stepanoved943f62012-04-20 09:03:40 +000011// CHECK-ARM-MCPU: as{{(.exe)?}}" "-mfloat-abi=soft" "-mcpu=cortex-a8"
Evgeniy Stepanov70cb3d62012-04-10 09:05:40 +000012//
13// RUN: %clang -target arm-linux -mfpu=neon -### \
14// RUN: -no-integrated-as -c %s 2>&1 \
15// RUN: | FileCheck -check-prefix=ARM-MFPU %s
Evgeniy Stepanoved943f62012-04-20 09:03:40 +000016// CHECK-ARM-MFPU: as{{(.exe)?}}" "-mfloat-abi=soft" "-mfpu=neon"
Evgeniy Stepanov70cb3d62012-04-10 09:05:40 +000017//
18// RUN: %clang -target arm-linux -march=armv7-a -### \
19// RUN: -no-integrated-as -c %s 2>&1 \
20// RUN: | FileCheck -check-prefix=ARM-MARCH %s
Evgeniy Stepanoved943f62012-04-20 09:03:40 +000021// CHECK-ARM-MARCH: as{{(.exe)?}}" "-mfloat-abi=soft" "-march=armv7-a"
Evgeniy Stepanov70cb3d62012-04-10 09:05:40 +000022//
23// RUN: %clang -target arm-linux -mcpu=cortex-a8 -mfpu=neon -march=armv7-a -### \
24// RUN: -no-integrated-as -c %s 2>&1 \
25// RUN: | FileCheck -check-prefix=ARM-ALL %s
Evgeniy Stepanoved943f62012-04-20 09:03:40 +000026// CHECK-ARM-ALL: as{{(.exe)?}}" "-mfloat-abi=soft" "-march=armv7-a" "-mcpu=cortex-a8" "-mfpu=neon"
Evgeniy Stepanov70cb3d62012-04-10 09:05:40 +000027//
28// RUN: %clang -target armv7-linux -mcpu=cortex-a8 -### \
29// RUN: -no-integrated-as -c %s 2>&1 \
30// RUN: | FileCheck -check-prefix=ARM-TARGET %s
Evgeniy Stepanoved943f62012-04-20 09:03:40 +000031// CHECK-ARM-TARGET: as{{(.exe)?}}" "-mfpu=neon" "-mfloat-abi=soft" "-mcpu=cortex-a8"
32//
33// RUN: %clang -target arm-linux -mfloat-abi=hard -### \
34// RUN: -no-integrated-as -c %s 2>&1 \
35// RUN: | FileCheck -check-prefix=ARM-MFLOAT-ABI %s
36// CHECK-ARM-MFLOAT-ABI: as{{(.exe)?}}" "-mfloat-abi=hard"
37//
38// RUN: %clang -target arm-linux-androideabi -### \
39// RUN: -no-integrated-as -c %s 2>&1 \
40// RUN: | FileCheck -check-prefix=ARM-ANDROID %s
41// CHECK-ARM-ANDROID: as{{(.exe)?}}" "-mfloat-abi=soft"
42//
43// RUN: %clang -target arm-linux-androideabi -march=armv7-a -### \
44// RUN: -no-integrated-as -c %s 2>&1 \
45// RUN: | FileCheck -check-prefix=ARM-ANDROID-SOFTFP %s
46// CHECK-ARM-ANDROID-SOFTFP: as{{(.exe)?}}" "-mfloat-abi=softfp" "-march=armv7-a"
47//
48// RUN: %clang -target arm-linux-eabi -mhard-float -### \
49// RUN: -no-integrated-as -c %s 2>&1 \
50// RUN: | FileCheck -check-prefix=ARM-HARDFP %s
51// CHECK-ARM-HARDFP: as{{(.exe)?}}" "-mfloat-abi=hard"
Evgeniy Stepanov582911a2012-04-24 09:05:31 +000052//
53// RUN: %clang -target ppc-linux -mcpu=invalid-cpu -### \
54// RUN: -no-integrated-as -c %s 2>&1 \
55// RUN: | FileCheck -check-prefix=PPC-NO-MCPU %s
56// CHECK-PPC-NO-MCPU-NOT: as{{.*}} "-mcpu=invalid-cpu"
Richard Sandiford4652d892013-07-19 16:51:51 +000057//
58// RUN: %clang -target s390x-linux -### -no-integrated-as -c %s 2>&1 \
59// RUN: | FileCheck -check-prefix=Z-DEFAULT-ARCH %s
60// CHECK-Z-DEFAULT-ARCH: as{{.*}} "-march=z10"
61//
62// RUN: %clang -target s390x-linux -march=z196 -### \
63// RUN: -no-integrated-as -c %s 2>&1 \
64// RUN: | FileCheck -check-prefix=Z-ARCH-Z196 %s
65// CHECK-Z-ARCH-Z196: as{{.*}} "-march=z196"