[llvm] r181247 - Untabify.

Eric Christopher echristo at gmail.com
Mon May 6 14:19:41 PDT 2013


Author: echristo
Date: Mon May  6 16:19:41 2013
New Revision: 181247

URL: http://llvm.org/viewvc/llvm-project?rev=181247&view=rev
Log:
Untabify.

Modified:
    llvm/trunk/lib/DebugInfo/DWARFContext.cpp

Modified: llvm/trunk/lib/DebugInfo/DWARFContext.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFContext.cpp?rev=181247&r1=181246&r2=181247&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFContext.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARFContext.cpp Mon May  6 16:19:41 2013
@@ -121,7 +121,7 @@ void DWARFContext::dump(raw_ostream &OS,
     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,
       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,
       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));
       }
     }
 }





More information about the llvm-commits mailing list