Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / InstCombine / shl-trunc.ll
index fae0ce3d42cab2e8909aabd4b630a0e801530af0..ffef2984f5c97ede97639ba1ffb330e1052d3e50 100644 (file)
@@ -1,7 +1,9 @@
 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep shl
 
-bool %test(int %X, ubyte %A) {
-       %B = lshr int %X, ubyte %A
-       %D = trunc int %B to bool
-       ret bool %D
+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
 }
+