1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

DwarfDebug: Move trailing else to the same line as prior closing brace

llvm-svn: 195060
This commit is contained in:
David Blaikie 2013-11-18 23:59:04 +00:00
parent 0fc401fb8f
commit f941cd8a75

View 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;