aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-12 18:09:06 +0000
committerChris Lattner <sabre@nondot.org>2007-04-12 18:09:06 +0000
commitd5b6f143a6824b9bf4c8f18d8df02f33e0f8500c (patch)
tree4b30a967905b414c23950a679969d662c91b90be
parenteeedcb6905febe0d3b68be2ce55347a211843da6 (diff)
make this happier on linux hosts
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35947 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/Generic/ispositive.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Generic/ispositive.ll b/test/CodeGen/Generic/ispositive.ll
index b58cbdd5c2..3b500917ab 100644
--- a/test/CodeGen/Generic/ispositive.ll
+++ b/test/CodeGen/Generic/ispositive.ll
@@ -1,5 +1,5 @@
; RUN: llvm-as < %s | llc -march=x86 | grep shrl.*31 &&
-; RUN: llvm-as < %s | llc -march=ppc32 | grep 'srwi r3, r3, 31' &&
+; RUN: llvm-as < %s | llc -march=ppc32 | grep 'srwi r?3, r?3, 31' &&
; RUN: llvm-as < %s | llc -march=arm | grep 'mov r0, r0, lsr #31' &&
; RUN: llvm-as < %s | llc -march=thumb | grep 'lsr r0, r0, #31'