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

Unified Diff: runtime/vm/assembler_x64.cc

Issue 10843006: Remove the default contains_call parameter on location summaries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename. 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
Index: runtime/vm/assembler_x64.cc
diff --git a/runtime/vm/assembler_x64.cc b/runtime/vm/assembler_x64.cc
index 10e3d8fda23bb7223c66b54e58cfe85a40f25770..84cf9697138fa3d367c4974168cda2a1d7b7802d 100644
--- a/runtime/vm/assembler_x64.cc
+++ b/runtime/vm/assembler_x64.cc
@@ -1564,6 +1564,7 @@ void Assembler::StoreIntoObjectFilter(Register object,
void Assembler::StoreIntoObject(Register object,
const FieldAddress& dest,
Register value) {
+ // TODO(kmillikin): pass temp registers to avoid pushing registers.
Ivan Posva 2012/07/31 16:43:35 ditto!
movq(dest, value);
Label done;

Powered by Google App Engine
This is Rietveld 408576698