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

Unified Diff: runtime/vm/isolate.cc

Issue 1341993003: Move pointer Isolate::heap_ above bool Isolate::errors_fatal_ so Ubuntu's gcc 4.8.4 and Linaro's gc… (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
« runtime/vm/isolate.h ('K') | « runtime/vm/isolate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 379287a67b4f94a77a36c0263c45cb0529b70d12..054b88681a1d9407f7f2fc698f7c844e03af7396 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -655,6 +655,7 @@ void BaseIsolate::AssertCurrentThreadIsMutator() const {
Isolate::Isolate(const Dart_IsolateFlags& api_flags)
: vm_tag_(0),
store_buffer_(new StoreBuffer()),
+ heap_(NULL),
thread_registry_(new ThreadRegistry()),
message_notify_callback_(NULL),
name_(NULL),
@@ -665,7 +666,6 @@ Isolate::Isolate(const Dart_IsolateFlags& api_flags)
pause_capability_(0),
terminate_capability_(0),
errors_fatal_(true),
- heap_(NULL),
object_store_(NULL),
top_exit_frame_info_(0),
init_callback_data_(NULL),
« runtime/vm/isolate.h ('K') | « runtime/vm/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698