2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float %s 2>&1 | FileCheck -check-prefix=TEST1 %s
|
|
|
|
// TEST1: "-no-implicit-float"
|
2009-03-31 02:13:26 +08:00
|
|
|
|
2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2>&1 | FileCheck -check-prefix=TEST2 %s
|
|
|
|
// TEST2-NOT: "-no-implicit-float"
|
2009-03-31 02:13:26 +08:00
|
|
|
|
2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2>&1 | FileCheck -check-prefix=TEST3 %s
|
|
|
|
// TEST3: "-no-implicit-float"
|
2009-03-31 02:13:26 +08:00
|
|
|
|
2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST4 %s
|
|
|
|
// TEST4: "-no-implicit-float"
|
2013-02-10 23:25:44 +08:00
|
|
|
|
2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin9 -### -S -mkernel %s 2>&1 | FileCheck -check-prefix=TEST5 %s
|
|
|
|
// TEST5: "-no-implicit-float"
|
2013-02-11 00:01:41 +08:00
|
|
|
|
2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin9 -### -S -mkernel -mno-soft-float %s 2>&1 | FileCheck -check-prefix=TEST6 %s
|
|
|
|
// TEST6-NOT: "-no-implicit-float"
|
2013-02-11 00:01:41 +08:00
|
|
|
|
2013-04-11 21:24:56 +08:00
|
|
|
// RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2>&1 | FileCheck -check-prefix=TEST7 %s
|
|
|
|
// TEST7: "-no-implicit-float"
|