Index: runtime/vm/isolate.cc |
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc |
index f3854bc64110515b28b523e4f17142bcd651b8a9..da4c5d42556e7bc16a442528f34d41153e788198 100644 |
--- a/runtime/vm/isolate.cc |
+++ b/runtime/vm/isolate.cc |
@@ -736,7 +736,6 @@ Isolate::Isolate(const Dart_IsolateFlags& api_flags) |
: stack_limit_(0), |
store_buffer_(new StoreBuffer()), |
heap_(NULL), |
- vm_tag_(0), |
user_tag_(0), |
current_tag_(UserTag::null()), |
default_tag_(UserTag::null()), |
@@ -777,7 +776,6 @@ Isolate::Isolate(const Dart_IsolateFlags& api_flags) |
gc_epilogue_callback_(NULL), |
defer_finalization_count_(0), |
deopt_context_(NULL), |
- background_compiler_(NULL), |
compiler_stats_(NULL), |
is_service_isolate_(false), |
stacktrace_(NULL), |
@@ -789,6 +787,7 @@ Isolate::Isolate(const Dart_IsolateFlags& api_flags) |
profiler_data_(NULL), |
tag_table_(GrowableObjectArray::null()), |
deoptimized_code_array_(GrowableObjectArray::null()), |
+ background_compiler_(NULL), |
background_compilation_queue_(GrowableObjectArray::null()), |
pending_service_extension_calls_(GrowableObjectArray::null()), |
registered_service_extension_handlers_(GrowableObjectArray::null()), |