| Index: runtime/vm/isolate.cc
|
| diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
|
| index 7d203bd12573599bde9429e9b324a7aa749e647c..f950d7ef3f2ebf225aa7d76889f380bacc8b343e 100644
|
| --- a/runtime/vm/isolate.cc
|
| +++ b/runtime/vm/isolate.cc
|
| @@ -1885,8 +1885,10 @@ RawClass* Isolate::GetClassForHeapWalkAt(intptr_t cid) {
|
| raw_class = class_table()->At(cid);
|
| #endif // !PRODUCT
|
| ASSERT(raw_class != NULL);
|
| +#if !defined(DART_PRECOMPILER)
|
| // This is temporarily untrue during a class id remap.
|
| - // ASSERT(raw_class->ptr()->id_ == cid);
|
| + ASSERT(raw_class->ptr()->id_ == cid);
|
| +#endif
|
| return raw_class;
|
| }
|
|
|
|
|