Reflow for loop.
authorEric Christopher <echristo@gmail.com>
Thu, 8 Aug 2013 01:41:05 +0000 (01:41 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 8 Aug 2013 01:41:05 +0000 (01:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187954 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfDebug.cpp

index 99d65199dbe253c2398f2b38a5eb9479671698f8..7bd2bb2ee50a54db14577d90361f8012d229cc8d 100644 (file)
@@ -2167,8 +2167,8 @@ void DwarfUnits::emitUnits(DwarfDebug *DD,
 unsigned DwarfUnits::getCUOffset(DIE *Die) {
   assert(Die->getTag() == dwarf::DW_TAG_compile_unit  &&
          "Input DIE should be compile unit in getCUOffset.");
-  for (SmallVectorImpl<CompileUnit *>::iterator I = CUs.begin(),
-       E = CUs.end(); I != E; ++I) {
+  for (SmallVectorImpl<CompileUnit *>::iterator I = CUs.begin(), E = CUs.end();
+       I != E; ++I) {
     CompileUnit *TheCU = *I;
     if (TheCU->getCUDie() == Die)
       return TheCU->getDebugInfoOffset();