diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-09 08:05:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-09 08:05:23 +0000 |
commit | 436285e75d400ebfae02bb40ab2f88d26d80304c (patch) | |
tree | c0d8c468741432b336303a0770804c97713b4b91 /llvm/lib | |
parent | 981afd7c1c4f7e73849ad8904a9393f9ea71c669 (diff) | |
download | bcm5719-llvm-436285e75d400ebfae02bb40ab2f88d26d80304c.tar.gz bcm5719-llvm-436285e75d400ebfae02bb40ab2f88d26d80304c.zip |
Change this back so that I get stable numbers to reflect the change from the
nightly testers
llvm-svn: 17646
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/IPO/InlineSimple.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/InlineSimple.cpp b/llvm/lib/Transforms/IPO/InlineSimple.cpp index 770f05c162a..6a43143d87b 100644 --- a/llvm/lib/Transforms/IPO/InlineSimple.cpp +++ b/llvm/lib/Transforms/IPO/InlineSimple.cpp @@ -193,7 +193,7 @@ int SimpleInliner::getInlineCost(CallSite CS) { // make it almost guaranteed to be inlined. // if (Callee->hasInternalLinkage() && Callee->hasOneUse()) - InlineCost -= 5000; + InlineCost -= 30000; // Get information about the callee... FunctionInfo &CalleeFI = CachedFunctionInfo[Callee]; |