repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix PR4963: folding insertvalue would sometimes turn a packed struct into
[llvm/avr.git]
/
test
/
Transforms
/
InstCombine
/
shift-trunc-shift.ll
blob
7133d299a2bdedaa062243bf862c6722165173e5
1
; RUN: opt < %s -instcombine -S | 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