DwarfDebug: Move trailing else to the same line as prior closing brace
authorDavid Blaikie <dblaikie@gmail.com>
Mon, 18 Nov 2013 23:59:04 +0000 (23:59 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Mon, 18 Nov 2013 23:59:04 +0000 (23:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195060 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfDebug.cpp

index b8af9f74a8302cc86c856269f6747916c23929cc..24e2c0539843a5f3cdcd2db8ac70cc3cf9847c7f 100644 (file)
@@ -620,11 +620,9 @@ DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) {
       // Note down abstract DIE.
       if (ScopeDIE)
         AbstractSPDies.insert(std::make_pair(DS, ScopeDIE));
-    }
-    else
+    } else
       ScopeDIE = updateSubprogramScopeDIE(TheCU, DISubprogram(DS));
-  }
-  else {
+  } else {
     // Early exit when we know the scope DIE is going to be null.
     if (isLexicalScopeDIENull(Scope))
       return NULL;