From: David Blaikie Date: Mon, 3 Aug 2015 20:55:00 +0000 (+0000) Subject: Fix with a bit more care. (but only a bit) X-Git-Tag: android-x86-7.1-r4~45161 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a590533767b9b5a0161454c392ef9a8b77fcf01e;p=android-x86%2Fexternal-llvm.git Fix with a bit more care. (but only a bit) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243903 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index d1d379242e0..f098babb9f4 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -2609,8 +2609,9 @@ bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) { if (!F) { // Make a global variable as a placeholder for this reference. GlobalValue *&FwdRef = - ForwardRefBlockAddresses.insert(std::make_pair, std::move(Fn), - std::map()) + ForwardRefBlockAddresses.insert(std::make_pair( + std::move(Fn), + std::map())) .first->second.insert(std::make_pair(std::move(Label), nullptr)) .first->second; if (!FwdRef)