summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-03-15 14:01:44 +0000
committerDuncan Sands <baldrick@free.fr>2010-03-15 14:01:44 +0000
commit145584e0373c79a19f906dbf346307af6281a45d (patch)
treebab131762c89b0f3a3dc8c6d328006676b99e8a8 /llvm
parentc33dec36642bb47c2451f3d33f8cf75f3c99f57c (diff)
downloadbcm5719-llvm-145584e0373c79a19f906dbf346307af6281a45d.tar.gz
bcm5719-llvm-145584e0373c79a19f906dbf346307af6281a45d.zip
Treat copysignl like the other copysign functions.
llvm-svn: 98542
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Analysis/InlineCost.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp
index cf2ce0e06a7..5b8b53495c4 100644
--- a/llvm/lib/Analysis/InlineCost.cpp
+++ b/llvm/lib/Analysis/InlineCost.cpp
@@ -120,7 +120,7 @@ static bool callIsSmall(const Function *F) {
StringRef Name = F->getName();
// These will all likely lower to a single selection DAG node.
- if (Name == "copysign" || Name == "copysignf" ||
+ if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
Name == "fabs" || Name == "fabsf" || Name == "fabsl" ||
Name == "sin" || Name == "sinf" || Name == "sinl" ||
Name == "cos" || Name == "cosf" || Name == "cosl" ||
OpenPOWER on IntegriCloud