Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / InstCombine / 2008-07-16-fsub.ll
blob2ace78854162e76daaad2f80fab8258bd4aea956
1 ; RUN: opt < %s -passes=instcombine -S | grep sub
2 ; PR2553
4 define double @test(double %X) nounwind {
5         ; fsub of self can't be optimized away.
6         %Y = fsub double %X, %X
7         ret double %Y