Isnan became unordered
[oota-llvm.git] / test / CodeGen / X86 / isnan.llx
1 ; RUN: llvm-as < %s | llc -march=x86 | not grep call
2 declare bool %llvm.isunordered(double)
3
4 bool %test_isnan(double %X) {
5         %R = call bool %llvm.isunordered(double %X, double %X)
6         ret bool %R
7 }