Chromium Code Reviews| Index: runtime/vm/stub_code.cc |
| diff --git a/runtime/vm/stub_code.cc b/runtime/vm/stub_code.cc |
| index e991fdb53a9ee7c8639ae58f1fdc6cc258d80c94..9d482c4e290eca543f8ed0bac033bab6a3700c19 100644 |
| --- a/runtime/vm/stub_code.cc |
| +++ b/runtime/vm/stub_code.cc |
| @@ -45,9 +45,11 @@ 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); |
| +#endif // DART_PRECOMPILED |
|
rmacnak
2016/01/05 18:47:03
else UNREACHABLE
Florian Schneider
2016/01/06 10:38:53
Done.
|
| } |