Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: runtime/vm/flow_graph_compiler_x64.cc

Issue 10809052: Rename MoveMemory to MoveMemoryToMemory to fix compilation on Win32 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix flow_graph_compiler.h Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698