summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-02-05 02:48:47 +0000
committerEric Christopher <echristo@apple.com>2011-02-05 02:48:47 +0000
commita818d031d5eef10b4edaaeb9a8455cc13920b09d (patch)
tree4d3bedcfbb414a95838728d5caeee981f617bb83
parentfe3f99f95c7c9ceaac3ceebbea31e40cfbc157e3 (diff)
downloadllvm-a818d031d5eef10b4edaaeb9a8455cc13920b09d.tar.gz
llvm-a818d031d5eef10b4edaaeb9a8455cc13920b09d.tar.bz2
llvm-a818d031d5eef10b4edaaeb9a8455cc13920b09d.tar.xz
Fix cut and paste error spotted by Jakob.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124930 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/InlineCost.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp
index 98a158ab26..58f38afc6e 100644
--- a/lib/Analysis/InlineCost.cpp
+++ b/lib/Analysis/InlineCost.cpp
@@ -330,7 +330,7 @@ int InlineCostAnalyzer::CountBonusForConstant(Value *V, Constant *C) {
} else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
// Turning an indirect call into a direct call is a BIG win
if (II->getCalledValue() == V)
- Bonus += ConstantFunctionBonus(CallSite(CI), C);
+ Bonus += ConstantFunctionBonus(CallSite(II), C);
}
// FIXME: Eliminating conditional branches and switches should
// also yield a per-call performance boost.