Home | History | Annotate | Download | only in InstCombine
      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 }
      8