[llvm] r358786 - Attempt to fix buildbot failure in commit 1bb57bac959ac163fd7d8a76d734ca3e0ecee6ab.
Amy Huang via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 19 14:44:31 PDT 2019
Author: akhuang
Date: Fri Apr 19 14:44:30 2019
New Revision: 358786
URL: http://llvm.org/viewvc/llvm-project?rev=358786&view=rev
Log:
Attempt to fix buildbot failure in commit 1bb57bac959ac163fd7d8a76d734ca3e0ecee6ab.
Modified:
llvm/trunk/lib/CodeGen/MachineFunction.cpp
Modified: llvm/trunk/lib/CodeGen/MachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineFunction.cpp?rev=358786&r1=358785&r2=358786&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineFunction.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineFunction.cpp Fri Apr 19 14:44:30 2019
@@ -814,7 +814,7 @@ void MachineFunction::addCodeViewHeapAll
I->setPostInstrSymbol(*this, EndLabel);
DIType *DI = dyn_cast<DIType>(MD);
- CodeViewHeapAllocSites.push_back({BeginLabel, EndLabel, DI});
+ CodeViewHeapAllocSites.push_back(std::make_tuple(BeginLabel, EndLabel, DI));
}
/// \}
More information about the llvm-commits
mailing list