diff options
author | Duncan Sands <baldrick@free.fr> | 2010-03-15 14:01:44 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-03-15 14:01:44 +0000 |
commit | 87cd7ed4083e8c9b9e5104bb65461ed585d003c2 (patch) | |
tree | fc08eb446abee83496a6f10b017f423079c534c9 /lib/Analysis/InlineCost.cpp | |
parent | ad181304e1e203bb0a039f7581188afdbc1afb42 (diff) |
Treat copysignl like the other copysign functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98542 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InlineCost.cpp')
-rw-r--r-- | lib/Analysis/InlineCost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp index cf2ce0e06a..5b8b53495c 100644 --- 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" || |