aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/compare_folding.llx
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/compare_folding.llx')
-rw-r--r--test/CodeGen/X86/compare_folding.llx8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/compare_folding.llx b/test/CodeGen/X86/compare_folding.llx
index 6a91bec..5a4471b 100644
--- a/test/CodeGen/X86/compare_folding.llx
+++ b/test/CodeGen/X86/compare_folding.llx
@@ -1,8 +1,8 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep movsd | wc -l | grep 1 &&
-; RUN: llvm-as < %s | llc -march=x86 | grep ucomisd
-declare bool %llvm.isunordered(double,double)
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep movsd | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep ucomisd
+declare bool %llvm.isunordered.f64(double,double)
bool %test1(double %X, double %Y) { ;; Returns isunordered(X,Y)
- %COM = call bool %llvm.isunordered(double %X, double %Y)
+ %COM = call bool %llvm.isunordered.f64(double %X, double %Y)
ret bool %COM
}