summaryrefslogtreecommitdiff
path: root/clang/test/Driver/flags.c
blob: 7a885b699b1540db464e0e5ca6236bb23ee16108 (about) (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log
// RUN: grep '"-no-implicit-float"' %t.log

// RUN: %clang -target i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log
// RUN: grep '"-no-implicit-float"' %t.log | count 0

// RUN: %clang -target i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log
// RUN: grep '"-no-implicit-float"' %t.log