mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 08:28:19 +00:00
Fix 80 column violations
llvm-svn: 25279
This commit is contained in:
parent
344642961e
commit
32f54b291d
@ -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) {}
|
||||
|
Loading…
Reference in New Issue
Block a user