teach memdep to do trivial PHI translation of GEPs. More to
[oota-llvm.git] / test / Transforms / InstCombine / fsub-fsub.ll
1 ; RUN: opt < %s -instcombine -S | grep fsub | count 2
2 ; PR4374
3
4 define float @func(float %a, float %b) nounwind {
5         %tmp3 = fsub float %a, %b
6         %tmp4 = fsub float -0.000000e+00, %tmp3
7         ret float %tmp4
8 }