summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-22 16:13:57 +0000
committerChris Lattner <sabre@nondot.org>2004-06-22 16:13:57 +0000
commit7962a8b21e3fb3896a3218c83495b5c45171f30f (patch)
tree9e16f6b6e4d41178cdd1b91a6fbc10304ff94e19 /test
parentcb6a3aa367e4ca30b909c2b9532b55492d188b9e (diff)
downloadllvm-7962a8b21e3fb3896a3218c83495b5c45171f30f.tar.gz
llvm-7962a8b21e3fb3896a3218c83495b5c45171f30f.tar.bz2
llvm-7962a8b21e3fb3896a3218c83495b5c45171f30f.tar.xz
Isnan became unordered
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-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
}