| Index: runtime/vm/object.cc
|
| ===================================================================
|
| --- runtime/vm/object.cc (revision 34648)
|
| +++ runtime/vm/object.cc (working copy)
|
| @@ -5863,7 +5863,13 @@
|
| const ClosureData& data = ClosureData::Handle(ClosureData::New());
|
| result.set_data(data);
|
| }
|
| +
|
| +// TODO(zra): Remove when arm64 is ready.
|
| +#if !defined(TARGET_ARCH_ARM64)
|
| result.set_code(Code::Handle(StubCode::LazyCompile_entry()->code()));
|
| +#else
|
| + result.set_code(Code::Handle());
|
| +#endif
|
| return result.raw();
|
| }
|
|
|
|
|