diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-22 07:51:08 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-22 07:51:08 +0000 |
commit | 44c6aa670fd5d694f2c5adb5fd1e50e709b58e59 (patch) | |
tree | 99be238ed655059b5dd9203423c79114a441eeb6 /llvm/lib/CodeGen | |
parent | 25e3509c785ab784444f8dc25c5a2059636a29ba (diff) | |
download | bcm5719-llvm-44c6aa670fd5d694f2c5adb5fd1e50e709b58e59.tar.gz bcm5719-llvm-44c6aa670fd5d694f2c5adb5fd1e50e709b58e59.zip |
Tidy.
llvm-svn: 180000
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index c3f475178bc..f3303e366ff 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -822,7 +822,8 @@ void DwarfDebug::beginModule() { // CU then construct a skeleton CU based upon it. if (useSplitDwarf()) { // This should be a unique identifier when we want to build .dwp files. - CU->addUInt(CU->getCUDie(), dwarf::DW_AT_GNU_dwo_id, dwarf::DW_FORM_data8, 0); + CU->addUInt(CU->getCUDie(), dwarf::DW_AT_GNU_dwo_id, + dwarf::DW_FORM_data8, 0); // Now construct the skeleton CU associated. constructSkeletonCU(CUNode); } @@ -2544,13 +2545,14 @@ CompileUnit *DwarfDebug::constructSkeletonCU(const MDNode *N) { // This should be a unique identifier when we want to build .dwp files. NewCU->addUInt(Die, dwarf::DW_AT_GNU_dwo_id, dwarf::DW_FORM_data8, 0); - // Relocate to the beginning of the addr_base section, else 0 for the beginning - // of the one for this compile unit. + // Relocate to the beginning of the addr_base section, else 0 for the + // beginning of the one for this compile unit. if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) NewCU->addLabel(Die, dwarf::DW_AT_GNU_addr_base, dwarf::DW_FORM_sec_offset, DwarfAddrSectionSym); else - NewCU->addUInt(Die, dwarf::DW_AT_GNU_addr_base, dwarf::DW_FORM_sec_offset, 0); + NewCU->addUInt(Die, dwarf::DW_AT_GNU_addr_base, + dwarf::DW_FORM_sec_offset, 0); // 2.17.1 requires that we use DW_AT_low_pc for a single entry point // into an entity. We're using 0, or a NULL label for this. |