llvm-6502/test/CodeGen/Generic/isunord.ll
Dan Gohman d2cb3d2c32 Remove the IA-64 backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76920 91177308-0d34-0410-b5e6-96231b3b80d8
2009-07-24 00:30:09 +00:00

10 lines
207 B
LLVM

; 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
}