aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/fsqrt.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-02 20:38:37 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-02 20:38:37 +0000
commitee45c55fe669de28ce0a7dc267d27d92948e151f (patch)
treedbf67bc8e30e8b6e8821151965e901d41fbc2fae /test/CodeGen/PowerPC/fsqrt.ll
parentd05b67dc647448ea4936c3ff91cfb42eb8b009bf (diff)
downloadexternal_llvm-ee45c55fe669de28ce0a7dc267d27d92948e151f.zip
external_llvm-ee45c55fe669de28ce0a7dc267d27d92948e151f.tar.gz
external_llvm-ee45c55fe669de28ce0a7dc267d27d92948e151f.tar.bz2
Upgrade intrinsic function calls
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/fsqrt.ll')
-rw-r--r--test/CodeGen/PowerPC/fsqrt.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/fsqrt.ll b/test/CodeGen/PowerPC/fsqrt.ll
index 87eaebb..0e9238e 100644
--- a/test/CodeGen/PowerPC/fsqrt.ll
+++ b/test/CodeGen/PowerPC/fsqrt.ll
@@ -6,8 +6,8 @@
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mattr=-fsqrt | not grep 'fsqrt f1, f1' &&
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g4 | not grep 'fsqrt f1, f1'
-declare double %llvm.sqrt(double)
+declare double %llvm.sqrt.f64(double)
double %X(double %Y) {
- %Z = call double %llvm.sqrt(double %Y)
+ %Z = call double %llvm.sqrt.f64(double %Y)
ret double %Z
}