From: Amy Huang Date: Fri, 19 Apr 2019 21:44:30 +0000 (+0000) Subject: Attempt to fix buildbot failure in commit 1bb57bac959ac163fd7d8a76d734ca3e0ecee6ab. X-Git-Tag: android-x86-9.0-r1~4459 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1d1a3480403954d1f0585abfe5bb06882b168674;p=android-x86%2Fexternal-llvm.git Attempt to fix buildbot failure in commit 1bb57bac959ac163fd7d8a76d734ca3e0ecee6ab. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358786 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 6309d6405d2..bcc523f9a2a 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp @@ -814,7 +814,7 @@ void MachineFunction::addCodeViewHeapAllocSite(MachineInstr *I, MDNode *MD) { I->setPostInstrSymbol(*this, EndLabel); DIType *DI = dyn_cast(MD); - CodeViewHeapAllocSites.push_back({BeginLabel, EndLabel, DI}); + CodeViewHeapAllocSites.push_back(std::make_tuple(BeginLabel, EndLabel, DI)); } /// \}