summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll
blob: 79267d9038d625171f074629878753b6c054d3b7 (plain)
1
2
3
4
5
6
; RUN: opt %s -instcombine | llvm-dis | grep {fcmp uno.*0.0}
; PR1111
define i1 @test(double %X) {
  %tmp = fcmp une double %X, %X
  ret i1 %tmp
}