llvm-6502/test/CodeGen/Generic/isunord.ll

9 lines
192 B
LLVM
Raw Normal View History

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