[llvm] r214588 - Attempt to increase the overall happiness of the MSCV-based buildbots.

Adrian Prantl aprantl at apple.com
Fri Aug 1 15:56:10 PDT 2014


Author: adrian
Date: Fri Aug  1 17:56:10 2014
New Revision: 214588

URL: http://llvm.org/viewvc/llvm-project?rev=214588&view=rev
Log:
Attempt to increase the overall happiness of the MSCV-based buildbots.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=214588&r1=214587&r2=214588&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Fri Aug  1 17:56:10 2014
@@ -1279,7 +1279,7 @@ buildLocationList(SmallVectorImpl<DebugL
     }
     // 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())





More information about the llvm-commits mailing list