diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-02 04:08:41 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-02 04:08:41 +0000 |
commit | 002da5db2912dcc4c7f88402a6d8c5901f25d2fd (patch) | |
tree | 5f8738f0382b3565bf41070b8ebaf202c667d6a1 /llvm/lib/Transforms | |
parent | c72d9b33aff335f676a34de47a2aa336207b917f (diff) | |
download | bcm5719-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/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/ConstantHoisting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp b/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp index 6250620c0f1..661d19cdbe4 100644 --- a/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp +++ b/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp @@ -229,7 +229,7 @@ void ConstantHoisting::FindAndMakeBaseConstant(ConstantMapType::iterator S, ConstantInfo::RebasedConstantInfo RCI; RCI.OriginalConstant = I->first; RCI.Offset = ConstantInt::get(Ty, Diff); - RCI.Uses = llvm_move(I->second.Uses); + RCI.Uses = std::move(I->second.Uses); CI.RebasedConstants.push_back(RCI); } Constants.push_back(CI); |