aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/calls.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-15 21:17:45 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-15 21:17:45 +0000
commitc58ef0185bbd70386367285afbf8ca3ee2fca30f (patch)
treef078747f4d81dd31695860bb3c20ff51c92e716f /test/CodeGen/PowerPC/calls.ll
parent97e287ef8a5170e6fcbc8e2392b9b8cc416fe87c (diff)
For PR1319: Upgrade to new test harness.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/calls.ll')
-rw-r--r--test/CodeGen/PowerPC/calls.ll9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/CodeGen/PowerPC/calls.ll b/test/CodeGen/PowerPC/calls.ll
index 73aa2aa2d4..f2a6003673 100644
--- a/test/CodeGen/PowerPC/calls.ll
+++ b/test/CodeGen/PowerPC/calls.ll
@@ -1,8 +1,11 @@
; Test various forms of calls.
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep 'bl ' | wc -l | grep 2 &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep 'bctrl' | wc -l | grep 1 &&
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep 'bla ' | wc -l | grep 1
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
+; RUN: grep {bl } | wc -l | grep 2
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
+; RUN: grep {bctrl} | wc -l | grep 1
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
+; RUN: grep {bla } | wc -l | grep 1
declare void %foo()