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