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

Unified Diff: runtime/vm/intermediate_language_dbc.cc

Issue 2490803002: DBC: Fix bugs with array allocation (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | runtime/vm/simulator_dbc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language_dbc.cc
diff --git a/runtime/vm/intermediate_language_dbc.cc b/runtime/vm/intermediate_language_dbc.cc
index 5f986cb9104f38910a82ebce6ecc2ecd72a0d994..65ffb7a60e31971e587ee6ed88e241f7c15c3569 100644
--- a/runtime/vm/intermediate_language_dbc.cc
+++ b/runtime/vm/intermediate_language_dbc.cc
@@ -698,11 +698,11 @@ EMIT_NATIVE_CODE(CreateArray,
__ Push(type_arguments);
__ Push(length);
__ CreateArrayTOS();
- compiler->RecordSafepoint(locs());
+ compiler->RecordAfterCall(this);
__ PopLocal(out);
} else {
__ CreateArrayTOS();
- compiler->RecordSafepoint(locs());
+ compiler->RecordAfterCall(this);
}
}
« no previous file with comments | « no previous file | runtime/vm/simulator_dbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698