| Index: runtime/vm/snapshot.cc
|
| diff --git a/runtime/vm/snapshot.cc b/runtime/vm/snapshot.cc
|
| index 9fef5bf77575685fe458ba4039cdc3a411b990b6..4f0a74f5d6be5f2942ff0e3c336d828db10b2117 100644
|
| --- a/runtime/vm/snapshot.cc
|
| +++ b/runtime/vm/snapshot.cc
|
| @@ -32,7 +32,7 @@ static bool IsSingletonClassId(intptr_t class_id) {
|
| static bool IsObjectStoreClassId(intptr_t class_id) {
|
| // Check if this is a class which is stored in the object store.
|
| return (class_id == kObjectCid ||
|
| - (class_id >= kInstanceCid && class_id <= kFloat64x2Cid) ||
|
| + (class_id >= kInstanceCid && class_id <= kUserTagCid) ||
|
| class_id == kArrayCid ||
|
| class_id == kImmutableArrayCid ||
|
| RawObject::IsStringClassId(class_id) ||
|
|
|