[llvm-commits] CVS: llvm/lib/Transforms/IPO/Inliner.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 13 10:07:08 PST 2006
Changes in directory llvm/lib/Transforms/IPO:
Inliner.cpp updated: 1.24 -> 1.25
---
Log message:
Fix 80 column violations
---
Diffs of the changes: (+3 -2)
Inliner.cpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm/lib/Transforms/IPO/Inliner.cpp
diff -u llvm/lib/Transforms/IPO/Inliner.cpp:1.24 llvm/lib/Transforms/IPO/Inliner.cpp:1.25
--- llvm/lib/Transforms/IPO/Inliner.cpp:1.24 Thu Apr 21 18:39:37 2005
+++ llvm/lib/Transforms/IPO/Inliner.cpp Fri Jan 13 12:06:56 2006
@@ -27,10 +27,11 @@
namespace {
Statistic<> NumInlined("inline", "Number of functions inlined");
- Statistic<> NumDeleted("inline", "Number of functions deleted because all callers found");
+ Statistic<> NumDeleted("inline",
+ "Number of functions deleted because all callers found");
cl::opt<unsigned> // FIXME: 200 is VERY conservative
InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
- cl::desc("Control the amount of inlining to perform (default = 200)"));
+ cl::desc("Control the amount of inlining to perform (default = 200)"));
}
Inliner::Inliner() : InlineThreshold(InlineLimit) {}
More information about the llvm-commits
mailing list