| Index: runtime/vm/thread.h
|
| diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h
|
| index d9bef66114b9618bb5e43e9ce27b7eb45b1bcb60..2e56a8e672b64d1036082c0fc74d0b5ade713320 100644
|
| --- a/runtime/vm/thread.h
|
| +++ b/runtime/vm/thread.h
|
| @@ -87,6 +87,10 @@ class Zone;
|
| StubCode::InvokeDartCode_entry()->code(), NULL) \
|
| V(RawCode*, call_to_runtime_stub_, \
|
| StubCode::CallToRuntime_entry()->code(), NULL) \
|
| + V(RawCode*, monomorphic_miss_stub_, \
|
| + StubCode::MonomorphicMiss_entry()->code(), NULL) \
|
| + V(RawCode*, ic_lookup_through_code_stub_, \
|
| + StubCode::ICLookupThroughCode_entry()->code(), NULL) \
|
|
|
| #endif
|
|
|
| @@ -105,8 +109,8 @@ class Zone;
|
| StubCode::UpdateStoreBuffer_entry()->EntryPoint(), 0) \
|
| V(uword, call_to_runtime_entry_point_, \
|
| StubCode::CallToRuntime_entry()->EntryPoint(), 0) \
|
| - V(uword, megamorphic_lookup_entry_point_, \
|
| - StubCode::MegamorphicLookup_entry()->EntryPoint(), 0) \
|
| + V(uword, megamorphic_lookup_checked_entry_, \
|
| + StubCode::MegamorphicLookup_entry()->CheckedEntryPoint(), 0) \
|
|
|
| #endif
|
|
|
|
|