From: Eric Christopher Date: Fri, 3 Jan 2014 02:17:35 +0000 (+0000) Subject: 80-column. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=32abfefd9b7cbbf759a5b5d61f251e9515e465bf;p=oota-llvm.git 80-column. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198394 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 0f2d1493dfc..a0052f605d7 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -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(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); } }