Convert all tests using TCL-style quoting to use shell-style quoting.
[oota-llvm.git] / test / Transforms / TailCallElim / trivial_codegen_tailcall.ll
index 98c233255ea809a2ddff6b0588ec4e15704dd343..3d01d1709952a3ebb0ee045e7517108875db27a2 100644 (file)
@@ -1,12 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -tailcallelim | llvm-dis | \
-; RUN:    grep {tail call void @foo}
+; RUN: opt < %s -tailcallelim -S | \
+; RUN:    grep "tail call void @foo"
 
-declare void %foo()
 
+declare void @foo()
 
-void %bar() {
-       call void %foo()
+define void @bar() {
+       call void @foo( )
        ret void
 }
 
-