summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-21 17:36:24 +0000
committerChris Lattner <sabre@nondot.org>2009-07-21 17:36:24 +0000
commit74625023a8f6375ef1c2752770d5623641ad1f78 (patch)
treed593d956fae74590388c6b868fbb9bf6f1910cf9 /test/CodeGen/SystemZ
parent90f8b7073dd472afb21bc33be0f24391e7a4505b (diff)
downloadllvm-74625023a8f6375ef1c2752770d5623641ad1f78.tar.gz
llvm-74625023a8f6375ef1c2752770d5623641ad1f78.tar.bz2
llvm-74625023a8f6375ef1c2752770d5623641ad1f78.tar.xz
convert this test to filecheck format, which is faster and avoids false matches of "st" -> "stdin"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SystemZ')
-rw-r--r--test/CodeGen/SystemZ/05-MemRegStores.ll20
1 files changed, 16 insertions, 4 deletions
diff --git a/test/CodeGen/SystemZ/05-MemRegStores.ll b/test/CodeGen/SystemZ/05-MemRegStores.ll
index 4849711127..d40a90afde 100644
--- a/test/CodeGen/SystemZ/05-MemRegStores.ll
+++ b/test/CodeGen/SystemZ/05-MemRegStores.ll
@@ -1,14 +1,14 @@
; RUN: llvm-as < %s | llc | not grep aghi
-; RUN: llvm-as < %s | llc | grep stg | count 1
-; RUN: llvm-as < %s | llc | grep st | count 8
-; RUN: llvm-as < %s | llc | grep sth | count 2
-; RUN: llvm-as < %s | llc | grep stc | count 2
+; RUN: llvm-as < %s | llc | FileCheck %s
target datalayout = "E-p:64:64:64-i1:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128"
target triple = "s390x-unknown-linux-gnu"
define void @foo1(i64* nocapture %a, i64 %idx, i64 %val) nounwind {
entry:
+
+; CHECK: foo1:
+; CHECK: stg %r4, 8(%r1,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i64* %a, i64 %add.ptr.sum ; <i64*> [#uses=1]
store i64 %val, i64* %add.ptr2
@@ -17,6 +17,8 @@ entry:
define void @foo2(i32* nocapture %a, i64 %idx, i32 %val) nounwind {
entry:
+; CHECK: foo2:
+; CHECK: st %r4, 4(%r1,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i32* %a, i64 %add.ptr.sum ; <i32*> [#uses=1]
store i32 %val, i32* %add.ptr2
@@ -25,6 +27,8 @@ entry:
define void @foo3(i16* nocapture %a, i64 %idx, i16 zeroext %val) nounwind {
entry:
+; CHECK: foo3:
+; CHECK: sth %r4, 2(%r1,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i16* %a, i64 %add.ptr.sum ; <i16*> [#uses=1]
store i16 %val, i16* %add.ptr2
@@ -33,6 +37,8 @@ entry:
define void @foo4(i8* nocapture %a, i64 %idx, i8 zeroext %val) nounwind {
entry:
+; CHECK: foo4:
+; CHECK: stc %r4, 1(%r3,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i8* %a, i64 %add.ptr.sum ; <i8*> [#uses=1]
store i8 %val, i8* %add.ptr2
@@ -41,6 +47,8 @@ entry:
define void @foo5(i8* nocapture %a, i64 %idx, i64 %val) nounwind {
entry:
+; CHECK: foo5:
+; CHECK: stc %r4, 1(%r3,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i8* %a, i64 %add.ptr.sum ; <i8*> [#uses=1]
%conv = trunc i64 %val to i8 ; <i8> [#uses=1]
@@ -50,6 +58,8 @@ entry:
define void @foo6(i16* nocapture %a, i64 %idx, i64 %val) nounwind {
entry:
+; CHECK: foo6:
+; CHECK: sth %r4, 2(%r1,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i16* %a, i64 %add.ptr.sum ; <i16*> [#uses=1]
%conv = trunc i64 %val to i16 ; <i16> [#uses=1]
@@ -59,6 +69,8 @@ entry:
define void @foo7(i32* nocapture %a, i64 %idx, i64 %val) nounwind {
entry:
+; CHECK: foo7:
+; CHECK: st %r4, 4(%r1,%r2)
%add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
%add.ptr2 = getelementptr i32* %a, i64 %add.ptr.sum ; <i32*> [#uses=1]
%conv = trunc i64 %val to i32 ; <i32> [#uses=1]