diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-08-01 22:56:10 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-08-01 22:56:10 +0000 |
commit | a6cf44822670f7f92f564b4de2b1fe40dc978dde (patch) | |
tree | 2196fb9e74703b6942d800baa1f62d5808082c65 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 36d57a2303e5a759925c57b8acbb00cabb1b9986 (diff) | |
download | bcm5719-llvm-a6cf44822670f7f92f564b4de2b1fe40dc978dde.tar.gz bcm5719-llvm-a6cf44822670f7f92f564b4de2b1fe40dc978dde.zip |
Attempt to increase the overall happiness of the MSCV-based buildbots.
llvm-svn: 214588
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index dc6081c3b42..454c10f1808 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1279,7 +1279,7 @@ buildLocationList(SmallVectorImpl<DebugLocEntry> &DebugLoc, } // Add this value to the list of open ranges. if (DIVar.isVariablePiece()) - OpenRanges.push_back({DIVar, Value}); + OpenRanges.push_back(std::make_pair(DIVar, Value)); DEBUG(dbgs() << "Values:\n"; for (auto Value : DebugLoc.back().getValues()) |