mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-31 09:25:42 +00:00
[C++11] Switch all uses of the llvm_move macro to use std::move
directly, and remove the macro. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202612 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user