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
/
2008-01-27-FloatSelect.ll
blob
c161bcc9045dca18f0ce50b6225c1f79a8bd241d
1
; RUN: opt < %s -instcombine -S | grep select
2
3
define double @fold(i1 %a, double %b) {
4
%s = select i1 %a, double 0., double 1.
5
%c = fdiv double %b, %s
6
ret double %c
7
}