aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/isnan.llx
blob: eb7bed362826fe38ed6fc4917ea3b599a4235722 (plain)
1
2
3
4
5
6
7
; 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
}