| Index: runtime/vm/stub_code.cc
|
| diff --git a/runtime/vm/stub_code.cc b/runtime/vm/stub_code.cc
|
| index e991fdb53a9ee7c8639ae58f1fdc6cc258d80c94..ad3c995316849d339ae93b9d3739397732809ca5 100644
|
| --- a/runtime/vm/stub_code.cc
|
| +++ b/runtime/vm/stub_code.cc
|
| @@ -45,9 +45,13 @@ void StubEntry::VisitObjectPointers(ObjectPointerVisitor* visitor) {
|
|
|
|
|
| void StubCode::InitOnce() {
|
| +#if !defined(DART_PRECOMPILED)
|
| // Generate all the stubs.
|
| Code& code = Code::Handle();
|
| VM_STUB_CODE_LIST(STUB_CODE_GENERATE);
|
| +#else
|
| + UNREACHABLE();
|
| +#endif // DART_PRECOMPILED
|
| }
|
|
|
|
|
|
|