Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 1 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log |
| 2 | // RUN: grep '"--no-implicit-float"' %t.log |
Daniel Dunbar | 776dbd8 | 2009-03-30 18:13:26 +0000 | [diff] [blame] | 3 | |
Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 4 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log |
| 5 | // RUN: grep '"--no-implicit-float"' %t.log | count 0 |
Daniel Dunbar | 776dbd8 | 2009-03-30 18:13:26 +0000 | [diff] [blame] | 6 | |
Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 7 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log |
Devang Patel | acebb39 | 2009-06-05 22:05:48 +0000 | [diff] [blame] | 8 | // RUN: grep '"--no-implicit-float"' %t.log |
Daniel Dunbar | 776dbd8 | 2009-03-30 18:13:26 +0000 | [diff] [blame] | 9 | |