| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 6a5830bacb4d19749267ccd873e81eed06b7e8a8..543ac2eb61eaab75560e6ca85c39c66ce98cba13 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -13356,6 +13356,7 @@ RawMegamorphicCache* MegamorphicCache::New() {
|
| }
|
| const intptr_t capacity = kInitialCapacity;
|
| const Array& buckets = Array::Handle(Array::New(kEntryLength * capacity));
|
| + ASSERT(Isolate::Current()->megamorphic_cache_table()->miss_handler() != NULL);
|
| const Function& handler = Function::Handle(
|
| Isolate::Current()->megamorphic_cache_table()->miss_handler());
|
| for (intptr_t i = 0; i < capacity; ++i) {
|
|
|