blob: 698a54ecf78b4f4d05e0525f47413d767f42adc8 [file] [log] [blame]
Sebastian Pop422377c2012-01-20 22:01:23 +00001// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log
Daniel Dunbar8bed86c2009-11-20 22:21:36 +00002// RUN: grep '"-no-implicit-float"' %t.log
Daniel Dunbar13357ae2009-03-30 18:13:26 +00003
Sebastian Pop422377c2012-01-20 22:01:23 +00004// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log
Daniel Dunbar8bed86c2009-11-20 22:21:36 +00005// RUN: grep '"-no-implicit-float"' %t.log | count 0
Daniel Dunbar13357ae2009-03-30 18:13:26 +00006
Sebastian Pop422377c2012-01-20 22:01:23 +00007// RUN: %clang -target i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log
Daniel Dunbar8bed86c2009-11-20 22:21:36 +00008// RUN: grep '"-no-implicit-float"' %t.log
Daniel Dunbar13357ae2009-03-30 18:13:26 +00009
Chad Rosierc14ded72012-05-16 21:19:55 +000010// RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2> %t.log
Chad Rosierf1985d22012-05-16 20:40:09 +000011// RUN: grep '"-no-implicit-float"' %t.log | count 1