Sebastian Pop | 422377c | 2012-01-20 22:01:23 +0000 | [diff] [blame] | 1 | // RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log |
Daniel Dunbar | 8bed86c | 2009-11-20 22:21:36 +0000 | [diff] [blame] | 2 | // RUN: grep '"-no-implicit-float"' %t.log |
Daniel Dunbar | 13357ae | 2009-03-30 18:13:26 +0000 | [diff] [blame] | 3 | |
Sebastian Pop | 422377c | 2012-01-20 22:01:23 +0000 | [diff] [blame] | 4 | // RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log |
Daniel Dunbar | 8bed86c | 2009-11-20 22:21:36 +0000 | [diff] [blame] | 5 | // RUN: grep '"-no-implicit-float"' %t.log | count 0 |
Daniel Dunbar | 13357ae | 2009-03-30 18:13:26 +0000 | [diff] [blame] | 6 | |
Sebastian Pop | 422377c | 2012-01-20 22:01:23 +0000 | [diff] [blame] | 7 | // RUN: %clang -target i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log |
Daniel Dunbar | 8bed86c | 2009-11-20 22:21:36 +0000 | [diff] [blame] | 8 | // RUN: grep '"-no-implicit-float"' %t.log |
Daniel Dunbar | 13357ae | 2009-03-30 18:13:26 +0000 | [diff] [blame] | 9 | |
Bob Wilson | 2cc9690 | 2013-02-10 15:25:44 +0000 | [diff] [blame^] | 10 | // RUN: %clang -target i386-apple-darwin9 -### -S -mno-implicit-float %s 2> %t.log |
| 11 | // RUN: grep '"-no-implicit-float"' %t.log |
| 12 | |
Chad Rosier | c14ded7 | 2012-05-16 21:19:55 +0000 | [diff] [blame] | 13 | // RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2> %t.log |
Bob Wilson | 2cc9690 | 2013-02-10 15:25:44 +0000 | [diff] [blame^] | 14 | // RUN: grep '"-no-implicit-float"' %t.log |