diff options
Diffstat (limited to 'test/Transforms/InstCombine/shl-trunc.ll')
-rw-r--r-- | test/Transforms/InstCombine/shl-trunc.ll | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/Transforms/InstCombine/shl-trunc.ll b/test/Transforms/InstCombine/shl-trunc.ll deleted file mode 100644 index ffef2984f5c97..0000000000000 --- a/test/Transforms/InstCombine/shl-trunc.ll +++ /dev/null @@ -1,9 +0,0 @@ -; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep shl - -define i1 @test(i32 %X, i8 %A) { - %shift.upgrd.1 = zext i8 %A to i32 ; <i32> [#uses=1] - %B = lshr i32 %X, %shift.upgrd.1 ; <i32> [#uses=1] - %D = trunc i32 %B to i1 ; <i1> [#uses=1] - ret i1 %D -} - |