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

Unified Diff: runtime/vm/flow_graph_optimizer.cc

Issue 15470013: Remove the IC data array from the isolate. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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_inliner.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_optimizer.cc
diff --git a/runtime/vm/flow_graph_optimizer.cc b/runtime/vm/flow_graph_optimizer.cc
index f81895829e51244c7009a41299e5e713c0d664cc..2da6e028d6fc84db390342e8d0e300782414b932 100644
--- a/runtime/vm/flow_graph_optimizer.cc
+++ b/runtime/vm/flow_graph_optimizer.cc
@@ -5984,7 +5984,8 @@ BranchInstr* BranchSimplifier::CloneBranch(BranchInstr* branch,
new EqualityCompareInstr(equality_compare->token_pos(),
comparison->kind(),
left,
- right);
+ right,
+ Array::Handle());
new_equality_compare->set_ic_data(equality_compare->ic_data());
new_comparison = new_equality_compare;
} else {
@@ -5994,7 +5995,8 @@ BranchInstr* BranchSimplifier::CloneBranch(BranchInstr* branch,
new RelationalOpInstr(relational_op->token_pos(),
comparison->kind(),
left,
- right);
+ right,
+ Array::Handle());
new_relational_op->set_ic_data(relational_op->ic_data());
new_comparison = new_relational_op;
}
« no previous file with comments | « runtime/vm/flow_graph_inliner.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698