[llvm-commits] [llvm] r80401 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp

Eric Christopher echristo at apple.com
Fri Aug 28 15:33:43 PDT 2009


Author: echristo
Date: Fri Aug 28 17:33:43 2009
New Revision: 80401

URL: http://llvm.org/viewvc/llvm-project?rev=80401&view=rev
Log:
Nuke trailing whitespace.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp?rev=80401&r1=80400&r2=80401&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp Fri Aug 28 17:33:43 2009
@@ -40,7 +40,7 @@
   : Dwarf(OS, A, T, "eh"), shouldEmitTable(false), shouldEmitMoves(false),
     shouldEmitTableModule(false), shouldEmitMovesModule(false),
     ExceptionTimer(0) {
-  if (TimePassesIsEnabled) 
+  if (TimePassesIsEnabled)
     ExceptionTimer = new Timer("Dwarf Exception Writer",
                                getDwarfTimerGroup());
 }
@@ -148,13 +148,13 @@
 
 /// EmitFDE - Emit the Frame Description Entry (FDE) for the function.
 void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
-  assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() && 
+  assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() &&
          "Should not emit 'available externally' functions at all");
 
   const Function *TheFunc = EHFrameInfo.function;
-  
+
   Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getEHFrameSection());
-  
+
   // Externally visible entry into the functions eh frame info. If the
   // corresponding function is static, this should not be externally visible.
   if (!TheFunc->hasLocalLinkage())
@@ -218,7 +218,7 @@
     }
 
     // Indicate locations of function specific callee saved registers in frame.
-    EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves, 
+    EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves,
                    true);
 
     // On Darwin the linker honors the alignment of eh_frame, which means it
@@ -486,7 +486,7 @@
 /// The general organization of the table is complex, but the basic concepts are
 /// easy.  First there is a header which describes the location and organization
 /// of the three components that follow.
-/// 
+///
 ///  1. The landing pad site information describes the range of code covered by
 ///     the try.  In our case it's an accumulation of the ranges covered by the
 ///     invokes in the try.  There is also a reference to the landing pad that
@@ -794,7 +794,7 @@
   // associated switch value.
   //
   //  Action Record Fields:
-  //  
+  //
   //   * Filter Value
   //     Positive value, starting at 1. Index in the types table of the
   //     __typeinfo for the catch-clause type. 1 is the first word preceding
@@ -894,7 +894,7 @@
 /// EndFunction - Gather and emit post-function exception information.
 ///
 void DwarfException::EndFunction() {
-  if (TimePassesIsEnabled) 
+  if (TimePassesIsEnabled)
     ExceptionTimer->startTimer();
 
   if (shouldEmitMoves || shouldEmitTable) {
@@ -912,6 +912,6 @@
                             MF->getFunction()));
   }
 
-  if (TimePassesIsEnabled) 
+  if (TimePassesIsEnabled)
     ExceptionTimer->stopTimer();
 }





More information about the llvm-commits mailing list