summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFDebugLoc.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-02 04:08:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-02 04:08:41 +0000
commit002da5db2912dcc4c7f88402a6d8c5901f25d2fd (patch)
tree5f8738f0382b3565bf41070b8ebaf202c667d6a1 /llvm/lib/DebugInfo/DWARFDebugLoc.cpp
parentc72d9b33aff335f676a34de47a2aa336207b917f (diff)
downloadbcm5719-llvm-002da5db2912dcc4c7f88402a6d8c5901f25d2fd.tar.gz
bcm5719-llvm-002da5db2912dcc4c7f88402a6d8c5901f25d2fd.zip
[C++11] Switch all uses of the llvm_move macro to use std::move
directly, and remove the macro. llvm-svn: 202612
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugLoc.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARFDebugLoc.cpp2
1 files changed, 1 insertions, 1 deletions
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))
OpenPOWER on IntegriCloud