Chromium Code Reviews| Index: runtime/vm/isolate.cc |
| diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc |
| index 3c6c88b8049299086efe71ec19e2c6e858493fbd..c9cabbc387b01f87573f250e058cb1e2761c0d0e 100644 |
| --- a/runtime/vm/isolate.cc |
| +++ b/runtime/vm/isolate.cc |
| @@ -1895,7 +1895,8 @@ RawClass* Isolate::GetClassForHeapWalkAt(intptr_t cid) { |
| raw_class = class_table()->At(cid); |
| #endif // !PRODUCT |
| ASSERT(raw_class != NULL); |
| - ASSERT(raw_class->ptr()->id_ == cid); |
| + // This is temporarily untrue during a class id remap. |
| + // ASSERT(raw_class->ptr()->id_ == cid); |
|
siva
2016/08/30 23:12:40
remap only happens in DART_PRECOMPILER, should thi
|
| return raw_class; |
| } |