llvm-6502/test/CodeGen/X86/isnan.llx
2004-06-11 02:54:54 +00:00

8 lines
171 B
Plaintext

; RUN: llvm-as < %s | llc -march=x86 | not grep call
declare bool %llvm.isnan(double)
bool %test_isnan(double %X) {
%R = call bool %llvm.isnan(double %X)
ret bool %R
}