Fix 80 column violations
authorChris Lattner <sabre@nondot.org>
Fri, 13 Jan 2006 18:06:56 +0000 (18:06 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 13 Jan 2006 18:06:56 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25279 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/Inliner.cpp

index 36955e1f4dcd97c6a2485e17a2a3dcac0b679b0c..a10879a15079e8ea5a54feeeedf0ed3f7e82cbbb 100644 (file)
@@ -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) {}