This implements the second half of the fix for PR3290, handling
[oota-llvm.git] / test / Transforms / InstCombine / 2008-01-21-MulTrunc.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | notcast
2
3 define i16 @test1(i16 %a) {
4         %tmp = zext i16 %a to i32               ; <i32> [#uses=2]
5         %tmp21 = lshr i32 %tmp, 8               ; <i32> [#uses=1]
6         %tmp5 = mul i32 %tmp, 5         ; <i32> [#uses=1]
7         %tmp.upgrd.32 = or i32 %tmp21, %tmp5            ; <i32> [#uses=1]
8         %tmp.upgrd.3 = trunc i32 %tmp.upgrd.32 to i16           ; <i16> [#uses=1]
9         ret i16 %tmp.upgrd.3
10 }
11