Isnan became unordered
authorChris Lattner <sabre@nondot.org>
Tue, 22 Jun 2004 16:13:57 +0000 (16:13 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 22 Jun 2004 16:13:57 +0000 (16:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14322 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/isnan.llx

index eb7bed362826fe38ed6fc4917ea3b599a4235722..df4390a4ab4e544e319f3ad63d39da809fac1475 100644 (file)
@@ -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
 }