From: Eric Christopher Date: Tue, 14 Feb 2017 19:43:50 +0000 (+0000) Subject: Reformat slightly. X-Git-Tag: android-x86-7.1-r4~20340 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=71648d0a826876807c78214885ffebbcafab7ea1;p=android-x86%2Fexternal-llvm.git Reformat slightly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295096 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LexicalScopes.cpp b/lib/CodeGen/LexicalScopes.cpp index fc84ddb1f6b..f0a7d7a0296 100644 --- a/lib/CodeGen/LexicalScopes.cpp +++ b/lib/CodeGen/LexicalScopes.cpp @@ -181,10 +181,9 @@ LexicalScopes::getOrCreateInlinedScope(const DILocalScope *Scope, else Parent = getOrCreateLexicalScope(InlinedAt); - I = InlinedLexicalScopeMap.emplace(std::piecewise_construct, - std::forward_as_tuple(P), - std::forward_as_tuple(Parent, Scope, - InlinedAt, false)) + I = InlinedLexicalScopeMap + .emplace(std::piecewise_construct, std::forward_as_tuple(P), + std::forward_as_tuple(Parent, Scope, InlinedAt, false)) .first; return &I->second; }