diff options
author | Eric Christopher <echristo@gmail.com> | 2013-05-06 21:19:41 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-05-06 21:19:41 +0000 |
commit | 34ea33680f9e91942ddfd2ab2cef262097b79ea2 (patch) | |
tree | b855111c248a1d7269293cc4fc4bb89075c7505b /llvm/lib/DebugInfo/DWARFContext.cpp | |
parent | 002562a8c1c4e03ea3e53ad7e649f8c8b574dbf2 (diff) | |
download | bcm5719-llvm-34ea33680f9e91942ddfd2ab2cef262097b79ea2.tar.gz bcm5719-llvm-34ea33680f9e91942ddfd2ab2cef262097b79ea2.zip |
Untabify.
llvm-svn: 181247
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFContext.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFContext.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/DebugInfo/DWARFContext.cpp b/llvm/lib/DebugInfo/DWARFContext.cpp index 4ce8f7a4d79..a47fe56fe42 100644 --- a/llvm/lib/DebugInfo/DWARFContext.cpp +++ b/llvm/lib/DebugInfo/DWARFContext.cpp @@ -121,7 +121,7 @@ void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType) { if (getNumDWOCompileUnits()) { OS << "\n.debug_info.dwo contents:\n"; for (unsigned i = 0, e = getNumDWOCompileUnits(); i != e; ++i) - getDWOCompileUnitAtIndex(i)->dump(OS); + getDWOCompileUnitAtIndex(i)->dump(OS); } if (DumpType == DIDT_All || DumpType == DIDT_StrDwo) @@ -131,8 +131,8 @@ void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType) { offset = 0; uint32_t strDWOOffset = 0; while (const char *s = strDWOData.getCStr(&offset)) { - OS << format("0x%8.8x: \"%s\"\n", strDWOOffset, s); - strDWOOffset = offset; + OS << format("0x%8.8x: \"%s\"\n", strDWOOffset, s); + strDWOOffset = offset; } } @@ -142,8 +142,8 @@ void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType) { DataExtractor strOffsetExt(getStringOffsetDWOSection(), isLittleEndian(), 0); offset = 0; while (offset < getStringOffsetDWOSection().size()) { - OS << format("0x%8.8x: ", offset); - OS << format("%8.8x\n", strOffsetExt.getU32(&offset)); + OS << format("0x%8.8x: ", offset); + OS << format("%8.8x\n", strOffsetExt.getU32(&offset)); } } } |