Address issues found by Duncan during post-commit review of r177856.
[oota-llvm.git] / test / Transforms / InstCombine / 2007-01-14-FcmpSelf.ll
1 ; RUN: opt < %s -instcombine -S | grep "fcmp uno.*0.0"
2 ; PR1111
3 define i1 @test(double %X) {
4   %tmp = fcmp une double %X, %X
5   ret i1 %tmp
6 }