[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Nov 9 00:05:38 PST 2004



Changes in directory llvm/lib/Transforms/IPO:

InlineSimple.cpp updated: 1.66 -> 1.67
---
Log message:

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


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Transforms/IPO/InlineSimple.cpp
diff -u llvm/lib/Transforms/IPO/InlineSimple.cpp:1.66 llvm/lib/Transforms/IPO/InlineSimple.cpp:1.67
--- llvm/lib/Transforms/IPO/InlineSimple.cpp:1.66	Sun Nov  7 15:46:47 2004
+++ llvm/lib/Transforms/IPO/InlineSimple.cpp	Tue Nov  9 02:05:23 2004
@@ -193,7 +193,7 @@
   // 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];






More information about the llvm-commits mailing list