1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Change this back so that I get stable numbers to reflect the change from the

nightly testers

llvm-svn: 17646
This commit is contained in:
Chris Lattner 2004-11-09 08:05:23 +00:00
parent 471722dd19
commit 9f035c9fdb

View File

@ -193,7 +193,7 @@ int SimpleInliner::getInlineCost(CallSite CS) {
// make it almost guaranteed to be inlined. // make it almost guaranteed to be inlined.
// //
if (Callee->hasInternalLinkage() && Callee->hasOneUse()) if (Callee->hasInternalLinkage() && Callee->hasOneUse())
InlineCost -= 5000; InlineCost -= 30000;
// Get information about the callee... // Get information about the callee...
FunctionInfo &CalleeFI = CachedFunctionInfo[Callee]; FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];