projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad18130
)
Treat copysignl like the other copysign functions.
author
Duncan Sands
<baldrick@free.fr>
Mon, 15 Mar 2010 14:01:44 +0000
(14:01 +0000)
committer
Duncan Sands
<baldrick@free.fr>
Mon, 15 Mar 2010 14:01:44 +0000
(14:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98542
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Analysis/InlineCost.cpp
patch
|
blob
|
history
diff --git
a/lib/Analysis/InlineCost.cpp
b/lib/Analysis/InlineCost.cpp
index cf2ce0e06a7638cbc0f5db8f7d77997f7327e9c5..5b8b53495c40f3a3dd82a8fe813c1d984d98aa61 100644
(file)
--- a/
lib/Analysis/InlineCost.cpp
+++ b/
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" ||