Lower thumbv4t & thumbv5 lo->lo copies through a push-pop sequence
[oota-llvm.git] / test / CodeGen / PowerPC / calls.ll
index 034c14147a29fd7383e14e085c71c3f90ee735b5..dcdda572146488843e8356881fa249e38e1d5bf9 100644 (file)
@@ -1,11 +1,11 @@
 ; Test various forms of calls.
 
-; RUN: llvm-as < %s | llc -march=ppc32 | \
-; RUN:   grep {bl } | count 2
-; RUN: llvm-as < %s | llc -march=ppc32 | \
-; RUN:   grep {bctrl} | count 1
-; RUN: llvm-as < %s | llc -march=ppc32 | \
-; RUN:   grep {bla } | count 1
+; RUN: llc < %s -march=ppc32 | \
+; RUN:   grep "bl " | count 1
+; RUN: llc < %s -march=ppc32 | \
+; RUN:   grep "bctrl" | count 1
+; RUN: llc < %s -march=ppc32 | \
+; RUN:   grep "bla " | count 1
 
 declare void @foo()
 
@@ -14,11 +14,6 @@ define void @test_direct() {
         ret void
 }
 
-define void @test_extsym(i8* %P) {
-        free i8* %P
-        ret void
-}
-
 define void @test_indirect(void ()* %fp) {
         call void %fp( )
         ret void