blob: ff60caf2e0f3408637c8206bc4bd6b53a3a7d3bc [file] [log] [blame]
Reid Kleckner292285e2013-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 Dunbar776dbd82009-03-30 18:13:26 +00003
Reid Kleckner292285e2013-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 Dunbar776dbd82009-03-30 18:13:26 +00006
Reid Kleckner292285e2013-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 Dunbar776dbd82009-03-30 18:13:26 +00009
Reid Kleckner292285e2013-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 Wilson7a9e91a2013-02-10 15:25:44 +000012
Bob Wilsonf6f77bd2013-04-11 18:53:25 +000013// RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float -mimplicit-float %s 2>&1 | FileCheck -check-prefix=TEST4A %s
14// TEST4A-NOT: "-no-implicit-float"
15
Reid Kleckner292285e2013-04-11 13:24:56 +000016// RUN: %clang -target i386-apple-darwin9 -### -S -mkernel %s 2>&1 | FileCheck -check-prefix=TEST5 %s
17// TEST5: "-no-implicit-float"
Bob Wilsonf0c54562013-02-10 16:01:41 +000018
Reid Kleckner292285e2013-04-11 13:24:56 +000019// RUN: %clang -target i386-apple-darwin9 -### -S -mkernel -mno-soft-float %s 2>&1 | FileCheck -check-prefix=TEST6 %s
20// TEST6-NOT: "-no-implicit-float"
Bob Wilsonf0c54562013-02-10 16:01:41 +000021
Reid Kleckner292285e2013-04-11 13:24:56 +000022// RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST7 %s
23// TEST7: "-no-implicit-float"
Bob Wilsonf6f77bd2013-04-11 18:53:25 +000024
25// RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float -mimplicit-float %s 2>&1 | FileCheck -check-prefix=TEST8 %s
26// TEST8-NOT: "-no-implicit-float"