Daniel Dunbar | 776dbd8 | 2009-03-30 18:13:26 +0000 | [diff] [blame^] | 1 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log && |
2 | // RUN: grep '"--soft-float"' %t.log && | ||||
3 | |||||
4 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log && | ||||
5 | // RUN: grep '"--soft-float"' %t.log | count 0 && | ||||
6 | |||||
7 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log && | ||||
8 | // RUN: grep '"--soft-float"' %t.log | ||||
9 |