From 74625023a8f6375ef1c2752770d5623641ad1f78 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 21 Jul 2009 17:36:24 +0000 Subject: 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 --- test/CodeGen/SystemZ/05-MemRegStores.ll | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'test/CodeGen/SystemZ') 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 ; [#uses=1] %add.ptr2 = getelementptr i64* %a, i64 %add.ptr.sum ; [#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 ; [#uses=1] %add.ptr2 = getelementptr i32* %a, i64 %add.ptr.sum ; [#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 ; [#uses=1] %add.ptr2 = getelementptr i16* %a, i64 %add.ptr.sum ; [#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 ; [#uses=1] %add.ptr2 = getelementptr i8* %a, i64 %add.ptr.sum ; [#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 ; [#uses=1] %add.ptr2 = getelementptr i8* %a, i64 %add.ptr.sum ; [#uses=1] %conv = trunc i64 %val to 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 ; [#uses=1] %add.ptr2 = getelementptr i16* %a, i64 %add.ptr.sum ; [#uses=1] %conv = trunc i64 %val to 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 ; [#uses=1] %add.ptr2 = getelementptr i32* %a, i64 %add.ptr.sum ; [#uses=1] %conv = trunc i64 %val to i32 ; [#uses=1] -- cgit v1.2.3