implement InstCombine/shift-trunc-shift.ll. This allows
[oota-llvm.git] / test / Transforms / InstCombine / shift-trunc-shift.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep lshr.*63
2
3 define i32 @t1(i64 %d18) {
4 entry:
5         %tmp916 = lshr i64 %d18, 32             ; <i64> [#uses=1]
6         %tmp917 = trunc i64 %tmp916 to i32              ; <i32> [#uses=1]
7         %tmp10 = lshr i32 %tmp917, 31           ; <i32> [#uses=1]
8         ret i32 %tmp10
9 }
10