Convert all tests using TCL-style quoting to use shell-style quoting.
[oota-llvm.git] / test / Transforms / TailCallElim / trivial_codegen_tailcall.ll
index d27b9dcc04c731a9bb335e5566a36ba3d4f6a8a4..3d01d1709952a3ebb0ee045e7517108875db27a2 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | 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
 }
 
-