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).  Yes, dragonegg supports objective-c++ (poorly though).

llvm-svn: 120164
diff --git a/llvm/test/FrontendObjC++/2010-08-04-Template.mm b/llvm/test/FrontendObjC++/2010-08-04-Template.mm
index d038340..2ebfd3e 100644
--- a/llvm/test/FrontendObjC++/2010-08-04-Template.mm
+++ b/llvm/test/FrontendObjC++/2010-08-04-Template.mm
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -S -emit-llvm
+// RUN: %llvmgcc %s -S
 struct TRunSoon {
   template <class P1> static void Post() {}
 };