Home | History | Annotate | Download | only in Driver
      1 // RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log
      2 // RUN: grep '"-no-implicit-float"' %t.log
      3 
      4 // RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log
      5 // RUN: grep '"-no-implicit-float"' %t.log | count 0
      6 
      7 // RUN: %clang -target i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log
      8 // RUN: grep '"-no-implicit-float"' %t.log
      9 
     10 // RUN: %clang -target armv7-apple-darwin10 -### -S -mno-implicit-float %s 2> %t.log
     11 // RUN: grep '"-no-implicit-float"' %t.log | count 1
     12