Remove explicit uses of -emit-llvm, the test infrastructure adds it
automatically. Use -S with llvm-gcc rather than -c, so tests can
work when llvm-gcc is really dragonegg (which can output IR with -S
but not -c).
llvm-svn: 120158
diff --git a/llvm/test/FrontendC/2004-06-17-UnorderedCompares.c b/llvm/test/FrontendC/2004-06-17-UnorderedCompares.c
index f91ed66..286e7bc 100644
--- a/llvm/test/FrontendC/2004-06-17-UnorderedCompares.c
+++ b/llvm/test/FrontendC/2004-06-17-UnorderedCompares.c
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc -xc -std=c99 %s -c -o - | llvm-dis | grep -v llvm.isunordered | not grep call
+// RUN: %llvmgcc -xc -std=c99 %s -S -o - | grep -v llvm.isunordered | not grep call
#include <math.h>