blob: 7c448fa6df5b0db5bd4edcdb8a23153581d41ba4 [file] [log] [blame]
Daniel Dunbar776dbd82009-03-30 18:13:26 +00001// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log &&
Devang Patelacebb392009-06-05 22:05:48 +00002// RUN: grep '"--no-implicit-float"' %t.log &&
Daniel Dunbar776dbd82009-03-30 18:13:26 +00003
4// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log &&
Devang Patelacebb392009-06-05 22:05:48 +00005// RUN: grep '"--no-implicit-float"' %t.log | count 0 &&
Daniel Dunbar776dbd82009-03-30 18:13:26 +00006
7// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log &&
Devang Patelacebb392009-06-05 22:05:48 +00008// RUN: grep '"--no-implicit-float"' %t.log
Daniel Dunbar776dbd82009-03-30 18:13:26 +00009