[llvm] r198394 - 80-column.

Eric Christopher echristo at gmail.com
Thu Jan 2 18:17:35 PST 2014


Author: echristo
Date: Thu Jan  2 20:17:35 2014
New Revision: 198394

URL: http://llvm.org/viewvc/llvm-project?rev=198394&view=rev
Log:
80-column.

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

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=198394&r1=198393&r2=198394&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Thu Jan  2 20:17:35 2014
@@ -1091,7 +1091,8 @@ void DwarfDebug::finalizeModuleInfo() {
       }
 
       // If we've requested ranges and have them emit a DW_AT_ranges attribute
-      // on the unit that will remain in the .o file, otherwise add a DW_AT_low_pc.
+      // on the unit that will remain in the .o file, otherwise add a
+      // DW_AT_low_pc.
       // FIXME: Also add a high pc if we can.
       // FIXME: We should use ranges if we have multiple compile units.
       DwarfCompileUnit *U = SkCU ? SkCU : static_cast<DwarfCompileUnit *>(TheU);
@@ -1100,7 +1101,8 @@ void DwarfDebug::finalizeModuleInfo() {
                         Asm->GetTempSymbol("cu_ranges", U->getUniqueID()),
                         DwarfDebugRangeSectionSym);
       else
-        U->addUInt(U->getUnitDie(), dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, 0);
+        U->addUInt(U->getUnitDie(), dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr,
+                   0);
     }
   }
 





More information about the llvm-commits mailing list