Untabify.
[oota-llvm.git] / lib / DebugInfo / DWARFContext.cpp
index 4ce8f7a4d796a35b0027c7dadc6f22960747eeb6..a47fe56fe42349b767ef7b0fab2df237efc6dbbf 100644 (file)
@@ -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));
       }
     }
 }