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

Unified Diff: runtime/vm/heap.cc

Issue 1351403004: Resolve some disagreements between SIMARM and XARM on offsets used in compiled code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/heap.cc
diff --git a/runtime/vm/heap.cc b/runtime/vm/heap.cc
index f599742b8eb664c1bd9bebde83b78b84b4c73420..28efa5466c57f93036cb645826beab1f6fd8e007 100644
--- a/runtime/vm/heap.cc
+++ b/runtime/vm/heap.cc
@@ -47,9 +47,9 @@ Heap::Heap(Isolate* isolate,
intptr_t max_new_gen_semi_words,
intptr_t max_old_gen_words,
intptr_t max_external_words)
- : isolate_(isolate),
- new_space_(this, max_new_gen_semi_words, kNewObjectAlignmentOffset),
+ : new_space_(this, max_new_gen_semi_words, kNewObjectAlignmentOffset),
old_space_(this, max_old_gen_words, max_external_words),
+ isolate_(isolate),
read_only_(false),
gc_in_progress_(false),
pretenure_policy_(0) {

Powered by Google App Engine
This is Rietveld 408576698