aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/isnan.llx
blob: df4390a4ab4e544e319f3ad63d39da809fac1475 (plain)
1
2
3
4
5
6
7
; RUN: llvm-as < %s | llc -march=x86 | not grep call
declare bool %llvm.isunordered(double)

bool %test_isnan(double %X) {
	%R = call bool %llvm.isunordered(double %X, double %X)
	ret bool %R
}