[llvm] r295096 - Reformat slightly.
Eric Christopher via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 14 11:43:50 PST 2017
Author: echristo
Date: Tue Feb 14 13:43:50 2017
New Revision: 295096
URL: http://llvm.org/viewvc/llvm-project?rev=295096&view=rev
Log:
Reformat slightly.
Modified:
llvm/trunk/lib/CodeGen/LexicalScopes.cpp
Modified: llvm/trunk/lib/CodeGen/LexicalScopes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LexicalScopes.cpp?rev=295096&r1=295095&r2=295096&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LexicalScopes.cpp (original)
+++ llvm/trunk/lib/CodeGen/LexicalScopes.cpp Tue Feb 14 13:43:50 2017
@@ -181,10 +181,9 @@ LexicalScopes::getOrCreateInlinedScope(c
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;
}
More information about the llvm-commits
mailing list