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
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
InstCombine
/
2005-04-07-UDivSelectCrash.ll
blob
1ec118006deb833db08b35dc96a33ea53726624d
1
; RUN: opt < %s -instcombine -disable-output
2
3
define i32 @test(i1 %C, i32 %tmp.15) {
4
%tmp.16 = select i1 %C, i32 8, i32 1 ; <i32> [#uses=1]
5
%tmp.18 = udiv i32 %tmp.15, %tmp.16 ; <i32> [#uses=1]
6
ret i32 %tmp.18
7
}
8