From fa84cccd575070278dffcff5ba8db5cf3cc02077 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 11 Oct 2009 22:42:06 +0000 Subject: [PATCH] remove old testcase llvm-svn: 83803 --- test/Transforms/InstCombine/shl-trunc.ll | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 test/Transforms/InstCombine/shl-trunc.ll diff --git a/test/Transforms/InstCombine/shl-trunc.ll b/test/Transforms/InstCombine/shl-trunc.ll deleted file mode 100644 index 84af2e33610..00000000000 --- a/test/Transforms/InstCombine/shl-trunc.ll +++ /dev/null @@ -1,9 +0,0 @@ -; RUN: opt < %s -instcombine -S | grep shl - -define i1 @test(i32 %X, i8 %A) { - %shift.upgrd.1 = zext i8 %A to i32 ; [#uses=1] - %B = lshr i32 %X, %shift.upgrd.1 ; [#uses=1] - %D = trunc i32 %B to i1 ; [#uses=1] - ret i1 %D -} -