fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git] / test / Transforms / InstCombine / 2008-01-27-FloatSelect.ll
blobc161bcc9045dca18f0ce50b6225c1f79a8bd241d
1 ; RUN: opt < %s -instcombine -S | grep select
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