aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/str_post.ll
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-10-27 06:16:45 +0000
committerBob Wilson <bob.wilson@apple.com>2009-10-27 06:16:45 +0000
commitb9350315d2bafcbdd667bfab49d10b7df4515ec5 (patch)
tree030c567bea2619a05712353b51ec43367cab22b6 /test/CodeGen/ARM/str_post.ll
parent13e80bdb7198c34009824d06df7b854d8c47c891 (diff)
downloadexternal_llvm-b9350315d2bafcbdd667bfab49d10b7df4515ec5.zip
external_llvm-b9350315d2bafcbdd667bfab49d10b7df4515ec5.tar.gz
external_llvm-b9350315d2bafcbdd667bfab49d10b7df4515ec5.tar.bz2
Fix the rest of the ARM failures by converting them to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85208 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/str_post.ll')
-rw-r--r--test/CodeGen/ARM/str_post.ll9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/str_post.ll b/test/CodeGen/ARM/str_post.ll
index 801b9ce..97916f1 100644
--- a/test/CodeGen/ARM/str_post.ll
+++ b/test/CodeGen/ARM/str_post.ll
@@ -1,9 +1,8 @@
-; RUN: llc < %s -march=arm | \
-; RUN: grep {strh .*\\\[.*\], #-4} | count 1
-; RUN: llc < %s -march=arm | \
-; RUN: grep {str .*\\\[.*\],} | count 1
+; RUN: llc < %s -march=arm | FileCheck %s
define i16 @test1(i32* %X, i16* %A) {
+; CHECK: test1:
+; CHECK: strh {{.*}}[{{.*}}], #-4
%Y = load i32* %X ; <i32> [#uses=1]
%tmp1 = trunc i32 %Y to i16 ; <i16> [#uses=1]
store i16 %tmp1, i16* %A
@@ -13,6 +12,8 @@ define i16 @test1(i32* %X, i16* %A) {
}
define i32 @test2(i32* %X, i32* %A) {
+; CHECK: test2:
+; CHECK: str {{.*}}[{{.*}}],
%Y = load i32* %X ; <i32> [#uses=1]
store i32 %Y, i32* %A
%tmp1 = ptrtoint i32* %A to i32 ; <i32> [#uses=1]