Files
llvm-6502/test/CodeGen/Generic/isunord.ll
Chris Lattner 23f7f5898e the sparc v8 backend handles this correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36801 91177308-0d34-0410-b5e6-96231b3b80d8
2007-05-05 22:12:57 +00:00

11 lines
230 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc
; XFAIL: ia64
declare bool %llvm.isunordered.f64(double, double)
bool %test(double %X, double %Y) {
%tmp27 = call bool %llvm.isunordered.f64( double %X, double %Y)
ret bool %tmp27
}