[C++11] Switch all uses of the llvm_move macro to use std::move
[oota-llvm.git] / lib / Transforms / Scalar / ConstantHoisting.cpp
index 6250620c0f18f5e569b9df4fdd949edefdd14ad3..661d19cdbe49b7d38811a275fe8007e7c88786a2 100644 (file)
@@ -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);