diff options
author | Eric Christopher <echristo@gmail.com> | 2014-01-03 02:17:35 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-01-03 02:17:35 +0000 |
commit | 4d214b9e9c4b9a64a614a6e47a201fa094ac066c (patch) | |
tree | 41b1d176054d6f931936956689591037bb0b394a | |
parent | 50effa04372a0340bd51ca9f9bc11be1a52ed8df (diff) | |
download | bcm5719-llvm-4d214b9e9c4b9a64a614a6e47a201fa094ac066c.tar.gz bcm5719-llvm-4d214b9e9c4b9a64a614a6e47a201fa094ac066c.zip |
80-column.
llvm-svn: 198394
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 0f2d1493dfc..a0052f605d7 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/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<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); } } |