| Index: runtime/vm/flow_graph_compiler_x64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
|
| index 02a1e2bee011e710142bf6cfcb4779ac800f60f9..56a15553994ecd45612e30d78bfee38221699ab2 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_x64.cc
|
| @@ -1137,7 +1137,7 @@ void ParallelMoveResolver::EmitMove(int index) {
|
| __ movq(destination.reg(), ToAddress(source));
|
| } else {
|
| ASSERT(destination.IsSpillSlot());
|
| - MoveMemory(ToAddress(destination), ToAddress(source));
|
| + MoveMemoryToMemory(ToAddress(destination), ToAddress(source));
|
| }
|
| } else {
|
| ASSERT(source.IsConstant());
|
| @@ -1188,8 +1188,9 @@ void ParallelMoveResolver::EmitSwap(int index) {
|
| }
|
|
|
|
|
| -void ParallelMoveResolver::MoveMemory(const Address& dst, const Address& src) {
|
| - __ MoveMemory(dst, src);
|
| +void ParallelMoveResolver::MoveMemoryToMemory(const Address& dst,
|
| + const Address& src) {
|
| + __ MoveMemoryToMemory(dst, src);
|
| }
|
|
|
|
|
|
|