A few 80-col violations.
[oota-llvm.git] / lib / CodeGen / PrologEpilogInserter.cpp
index ec5fe25704aa7ed7e913d9120c0384caeacf79ee..32c932552bedd8c438026a978da767bcda7b7b5d 100644 (file)
@@ -55,7 +55,8 @@ INITIALIZE_PASS_END(PEI, "prologepilog",
 
 STATISTIC(NumVirtualFrameRegs, "Number of virtual frame regs encountered");
 STATISTIC(NumScavengedRegs, "Number of frame index regs scavenged");
-STATISTIC(NumBytesStackSpace, "Number of bytes used for stack in all functions");
+STATISTIC(NumBytesStackSpace,
+          "Number of bytes used for stack in all functions");
 
 /// createPrologEpilogCodeInserter - This function returns a pass that inserts
 /// prolog and epilog code, and eliminates abstract frame references.
@@ -701,10 +702,10 @@ void PEI::insertPrologEpilogCode(MachineFunction &Fn) {
       TFI.emitEpilogue(Fn, *I);
   }
 
-  // Emit additional code that is required support segmented stacks, if we've
-  // been asked for it.  This, when linked with a runtime with support for
-  // segmented stacks (libgcc is one), will result allocating stack space in
-  // small chunks instead of one large contiguous block.
+  // Emit additional code that is required to support segmented stacks, if
+  // we've been asked for it.  This, when linked with a runtime with support
+  // for segmented stacks (libgcc is one), will result in allocating stack
+  // space in small chunks instead of one large contiguous block.
   if (EnableSegmentedStacks)
     TFI.adjustForSegmentedStacks(Fn);
 }