From: Chris Lattner Date: Thu, 7 Jan 2010 23:42:23 +0000 (+0000) Subject: filecheckize X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e3874deb61fb01354ca32996e941060956fc4d41;p=oota-llvm.git filecheckize git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92963 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/shift-sra.ll b/test/Transforms/InstCombine/shift-sra.ll index 449278544d1..c209328a800 100644 --- a/test/Transforms/InstCombine/shift-sra.ll +++ b/test/Transforms/InstCombine/shift-sra.ll @@ -1,6 +1,4 @@ -; RUN: opt < %s -instcombine -S | \ -; RUN: grep {lshr i32} | count 2 -; RUN: opt < %s -instcombine -S | not grep ashr +; RUN: opt < %s -instcombine -S | FileCheck %s define i32 @test1(i32 %X, i8 %A) { @@ -9,6 +7,8 @@ define i32 @test1(i32 %X, i8 %A) { %Y = ashr i32 %X, %shift.upgrd.1 ; [#uses=1] %Z = and i32 %Y, 1 ; [#uses=1] ret i32 %Z +; CHECK: @test1 +; CHECK: lshr i32 %X, %shift.upgrd.1 } define i32 @test2(i8 %tmp) { @@ -16,4 +16,6 @@ define i32 @test2(i8 %tmp) { %tmp4 = add i32 %tmp3, 7 ; [#uses=1] %tmp5 = ashr i32 %tmp4, 3 ; [#uses=1] ret i32 %tmp5 +; CHECK: @test2 +; CHECK: lshr i32 %tmp4, 3 }