[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/isnan.llx
Chris Lattner
lattner at cs.uiuc.edu
Tue Jun 22 11:22:02 PDT 2004
Changes in directory llvm/test/Regression/CodeGen/X86:
isnan.llx updated: 1.1 -> 1.2
---
Log message:
Isnan became unordered
---
Diffs of the changes: (+2 -2)
Index: llvm/test/Regression/CodeGen/X86/isnan.llx
diff -u llvm/test/Regression/CodeGen/X86/isnan.llx:1.1 llvm/test/Regression/CodeGen/X86/isnan.llx:1.2
--- llvm/test/Regression/CodeGen/X86/isnan.llx:1.1 Thu Jun 10 21:54:54 2004
+++ llvm/test/Regression/CodeGen/X86/isnan.llx Tue Jun 22 11:13:57 2004
@@ -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
}
More information about the llvm-commits
mailing list