| Index: runtime/vm/dart.cc
|
| ===================================================================
|
| --- runtime/vm/dart.cc (revision 34648)
|
| +++ runtime/vm/dart.cc (working copy)
|
| @@ -233,12 +233,15 @@
|
| Object::VerifyBuiltinVtables();
|
|
|
| StubCode::Init(isolate);
|
| + // TODO(zra): ifndef to be removed when ARM64 port is ready.
|
| +#if !defined(TARGET_ARCH_ARM64)
|
| if (snapshot_buffer == NULL) {
|
| if (!isolate->object_store()->PreallocateObjects()) {
|
| return isolate->object_store()->sticky_error();
|
| }
|
| }
|
| isolate->megamorphic_cache_table()->InitMissHandler();
|
| +#endif
|
|
|
| isolate->heap()->EnableGrowthControl();
|
| isolate->set_init_callback_data(data);
|
|
|