repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
Transforms
/
InstCombine
/
2009-03-20-AShrOverShift.ll
blob
0a07bf34bac917c71a519ef3e1f0040c9d90f4d3
1
; RUN: opt < %s -instcombine -S | grep {ashr i32 %val, 31}
2
; PR3851
3
4
define i32 @foo2(i32 %val) nounwind {
5
entry:
6
%shr = ashr i32 %val, 15 ; <i32> [#uses=3]
7
%shr4 = ashr i32 %shr, 17 ; <i32> [#uses=1]
8
ret i32 %shr4
9
}