mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
12 lines
449 B
LLVM
12 lines
449 B
LLVM
; RUN: opt < %s -instcombine -S | notcast
|
|
|
|
define i16 @test1(i16 %a) {
|
|
%tmp = zext i16 %a to i32 ; <i32> [#uses=2]
|
|
%tmp21 = lshr i32 %tmp, 8 ; <i32> [#uses=1]
|
|
%tmp5 = mul i32 %tmp, 5 ; <i32> [#uses=1]
|
|
%tmp.upgrd.32 = or i32 %tmp21, %tmp5 ; <i32> [#uses=1]
|
|
%tmp.upgrd.3 = trunc i32 %tmp.upgrd.32 to i16 ; <i16> [#uses=1]
|
|
ret i16 %tmp.upgrd.3
|
|
}
|
|
|