From 8acb249725e3304aafe91d5357f69722957c51b1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 13 Jan 2006 18:06:56 +0000 Subject: [PATCH] Fix 80 column violations git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25279 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/Inliner.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp index 36955e1f4dc..a10879a1507 100644 --- a/lib/Transforms/IPO/Inliner.cpp +++ b/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 // 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) {}