Fix cut and paste error spotted by Jakob.
authorEric Christopher <echristo@apple.com>
Sat, 5 Feb 2011 02:48:47 +0000 (02:48 +0000)
committerEric Christopher <echristo@apple.com>
Sat, 5 Feb 2011 02:48:47 +0000 (02:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124930 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InlineCost.cpp

index 98a158ab2690eb7c7433a93928ead47da78e0f8f..58f38afc6e909c5939fbd9dcd981c787dcc76e16 100644 (file)
@@ -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.