diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-13 18:06:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-13 18:06:56 +0000 |
commit | 49c4d536bd6f9e5d37e6e98b45e0e37ae39e41ff (patch) | |
tree | 6f980cf145f5f73af1a3b8ecbf8f1258bc1ef5fe /llvm | |
parent | 1a8d918ef19b71181dcbd6b2dbb84969de8fe75c (diff) | |
download | bcm5719-llvm-49c4d536bd6f9e5d37e6e98b45e0e37ae39e41ff.tar.gz bcm5719-llvm-49c4d536bd6f9e5d37e6e98b45e0e37ae39e41ff.zip |
Fix 80 column violations
llvm-svn: 25279
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Transforms/IPO/Inliner.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/Inliner.cpp b/llvm/lib/Transforms/IPO/Inliner.cpp index 36955e1f4dc..a10879a1507 100644 --- a/llvm/lib/Transforms/IPO/Inliner.cpp +++ b/llvm/lib/Transforms/IPO/Inliner.cpp @@ -27,10 +27,11 @@ using namespace llvm; 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) {} |