From 002da5db2912dcc4c7f88402a6d8c5901f25d2fd Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sun, 2 Mar 2014 04:08:41 +0000 Subject: [C++11] Switch all uses of the llvm_move macro to use std::move directly, and remove the macro. llvm-svn: 202612 --- llvm/lib/DebugInfo/DWARFDebugLoc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/DebugInfo/DWARFDebugLoc.cpp') diff --git a/llvm/lib/DebugInfo/DWARFDebugLoc.cpp b/llvm/lib/DebugInfo/DWARFDebugLoc.cpp index 36d17919dea..8fe7481bbfe 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLoc.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLoc.cpp @@ -68,7 +68,7 @@ void DWARFDebugLoc::parse(DataExtractor data, unsigned AddressSize) { Offset += Bytes; E.Loc.reserve(str.size()); std::copy(str.begin(), str.end(), std::back_inserter(E.Loc)); - Loc.Entries.push_back(llvm_move(E)); + Loc.Entries.push_back(std::move(E)); } } if (data.isValidOffset(Offset)) -- cgit v1.2.3