summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/isunord.ll
blob: fa465d4e2209352996b831f50be81a06900207e5 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | llc

declare i1 @llvm.isunordered.f64(double, double)

define i1 @test(double %X, double %Y) {
        %tmp27 = fcmp uno double %X, %Y         ; <i1> [#uses=1]
        ret i1 %tmp27
}