aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/X86/isnan.llx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/isnan.llx b/test/CodeGen/X86/isnan.llx
index eb7bed3628..df4390a4ab 100644
--- a/test/CodeGen/X86/isnan.llx
+++ b/test/CodeGen/X86/isnan.llx
@@ -1,7 +1,7 @@
; RUN: llvm-as < %s | llc -march=x86 | not grep call
-declare bool %llvm.isnan(double)
+declare bool %llvm.isunordered(double)
bool %test_isnan(double %X) {
- %R = call bool %llvm.isnan(double %X)
+ %R = call bool %llvm.isunordered(double %X, double %X)
ret bool %R
}