blob: 579b9830990eb740d8bf7e610fbd11caef1006df [file] [log] [blame]
Reid Kleckner37e8fe12013-04-11 13:24:56 +00001// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float %s 2>&1 | FileCheck -check-prefix=TEST1 %s
2// TEST1: "-no-implicit-float"
Daniel Dunbar13357ae2009-03-30 18:13:26 +00003
Reid Kleckner37e8fe12013-04-11 13:24:56 +00004// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2>&1 | FileCheck -check-prefix=TEST2 %s
5// TEST2-NOT: "-no-implicit-float"
Daniel Dunbar13357ae2009-03-30 18:13:26 +00006
Reid Kleckner37e8fe12013-04-11 13:24:56 +00007// RUN: %clang -target i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2>&1 | FileCheck -check-prefix=TEST3 %s
8// TEST3: "-no-implicit-float"
Daniel Dunbar13357ae2009-03-30 18:13:26 +00009
Reid Kleckner37e8fe12013-04-11 13:24:56 +000010// RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST4 %s
11// TEST4: "-no-implicit-float"
Bob Wilson2cc96902013-02-10 15:25:44 +000012
Reid Kleckner37e8fe12013-04-11 13:24:56 +000013// RUN: %clang -target i386-apple-darwin9 -### -S -mkernel %s 2>&1 | FileCheck -check-prefix=TEST5 %s
14// TEST5: "-no-implicit-float"
Bob Wilson2616e2e2013-02-10 16:01:41 +000015
Reid Kleckner37e8fe12013-04-11 13:24:56 +000016// RUN: %clang -target i386-apple-darwin9 -### -S -mkernel -mno-soft-float %s 2>&1 | FileCheck -check-prefix=TEST6 %s
17// TEST6-NOT: "-no-implicit-float"
Bob Wilson2616e2e2013-02-10 16:01:41 +000018
Reid Kleckner37e8fe12013-04-11 13:24:56 +000019// RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST7 %s
20// TEST7: "-no-implicit-float"