diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-13 20:10:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-13 20:10:10 +0000 |
commit | 497f61940a2b682bff79a0e2ada0caa65508f80c (patch) | |
tree | fdf8e9e7331826666d39c4db091c24b8afb4152a /lib/Analysis/InlineCost.cpp | |
parent | e7f0ed5aceed27d6f46521ec6e4c139986c5b489 (diff) |
Compute a full cost value even when a setjmp call is found.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84015 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InlineCost.cpp')
-rw-r--r-- | lib/Analysis/InlineCost.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp index 4cbe0b0eaa..3b0d2c90ae 100644 --- a/lib/Analysis/InlineCost.cpp +++ b/lib/Analysis/InlineCost.cpp @@ -121,10 +121,8 @@ void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB) { // probably won't do this in callers. if (Function *F = CS.getCalledFunction()) if (F->isDeclaration() && - (F->getName() == "setjmp" || F->getName() == "_setjmp")) { + (F->getName() == "setjmp" || F->getName() == "_setjmp")) NeverInline = true; - return; - } // Calls often compile into many machine instructions. Bump up their // cost to reflect this. |