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++/2007-05-23-TryFinally.cpp b/llvm/test/FrontendC++/2007-05-23-TryFinally.cpp
index 38f0b02..c797182 100644
--- a/llvm/test/FrontendC++/2007-05-23-TryFinally.cpp
+++ b/llvm/test/FrontendC++/2007-05-23-TryFinally.cpp
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx %s -S -emit-llvm -O2 -o - | ignore grep _Unwind_Resume | \
+// RUN: %llvmgxx %s -S -O2 -o - | ignore grep _Unwind_Resume | \
 // RUN:   wc -l | grep {\[23\]}
 
 struct One { };