summaryrefslogtreecommitdiffstats
path: root/test/Driver/flags.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Driver/flags.c')
-rw-r--r--test/Driver/flags.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Driver/flags.c b/test/Driver/flags.c
new file mode 100644
index 0000000..53f3995
--- /dev/null
+++ b/test/Driver/flags.c
@@ -0,0 +1,9 @@
+// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log &&
+// RUN: grep '"--soft-float"' %t.log &&
+
+// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log &&
+// RUN: grep '"--soft-float"' %t.log | count 0 &&
+
+// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log &&
+// RUN: grep '"--soft-float"' %t.log
+
OpenPOWER on IntegriCloud