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

Unified Diff: runtime/vm/flow_graph_builder.cc

Issue 12529008: Collect type feedback for fields. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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/flow_graph_builder.cc
diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
index 722118679d35815d476a1d829997d076067ae833..6995dbdb8c27879d7fd46162176d59d355b3018c 100644
--- a/runtime/vm/flow_graph_builder.cc
+++ b/runtime/vm/flow_graph_builder.cc
@@ -2596,7 +2596,10 @@ void EffectGraphVisitor::VisitStoreInstanceFieldNode(
dst_name);
}
StoreInstanceFieldInstr* store = new StoreInstanceFieldInstr(
Kevin Millikin (Google) 2013/03/12 12:14:56 Thanks, I guess. But the dangling "(" is the real
Vyacheslav Egorov (Google) 2013/03/12 16:54:40 Done.
- node->field(), for_instance.value(), store_value, kEmitStoreBarrier);
+ node->field(),
+ for_instance.value(),
+ store_value,
+ kEmitStoreBarrier);
ReturnDefinition(store);
}

Powered by Google App Engine
This is Rietveld 408576698