summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorAmy Huang <akhuang@google.com>2019-04-19 21:44:30 +0000
committerAmy Huang <akhuang@google.com>2019-04-19 21:44:30 +0000
commitd07d6d617713bececf57f3547434dd52f0f13f9e (patch)
tree81caaa9c2ed708770d77ce00da736b8df5eaba2e /llvm/lib/CodeGen/MachineFunction.cpp
parent627e8f8cb390603ca8e9761d12022619746efff5 (diff)
downloadbcm5719-llvm-d07d6d617713bececf57f3547434dd52f0f13f9e.tar.gz
bcm5719-llvm-d07d6d617713bececf57f3547434dd52f0f13f9e.zip
Attempt to fix buildbot failure in commit 1bb57bac959ac163fd7d8a76d734ca3e0ecee6ab.
llvm-svn: 358786
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineFunction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp
index 6309d6405d2..bcc523f9a2a 100644
--- a/llvm/lib/CodeGen/MachineFunction.cpp
+++ b/llvm/lib/CodeGen/MachineFunction.cpp
@@ -814,7 +814,7 @@ void MachineFunction::addCodeViewHeapAllocSite(MachineInstr *I, MDNode *MD) {
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));
}
/// \}
OpenPOWER on IntegriCloud