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
/
ConstProp
/
2006-12-01-TruncBoolBug.ll
blob
e46a875a7cfad9bd8aa338bd7562dd3d3b0a35f4
1
; RUN: opt < %s -instcombine -S | \
2
; RUN: grep {ret i1 false}
3
define i1 @test() {
4
%X = trunc i32 320 to i1 ; <i1> [#uses=1]
5
ret i1 %X
6
}
7