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: 120160
diff --git a/llvm/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp b/llvm/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
index bc862e7..89a79f2 100644
--- a/llvm/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
+++ b/llvm/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx -c -emit-llvm %s -o -
+// RUN: %llvmgxx -S %s -o -
// rdar://7114564
struct A {
unsigned long long : (sizeof(unsigned long long) * 8) - 16;