| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index 984561693215044299677b81d4ae1d33908bba2f..19ae737dfaee340f398d6e2cd67a7f532b08632a 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -941,8 +941,9 @@ class RawField : public RawObject {
|
| switch (kind) {
|
| case Snapshot::kCore:
|
| case Snapshot::kScript:
|
| - case Snapshot::kAppWithJIT:
|
| return reinterpret_cast<RawObject**>(&ptr()->guarded_list_length_);
|
| + case Snapshot::kAppWithJIT:
|
| + return reinterpret_cast<RawObject**>(&ptr()->dependent_code_);
|
| case Snapshot::kAppNoJIT:
|
| return reinterpret_cast<RawObject**>(&ptr()->initializer_);
|
| case Snapshot::kMessage:
|
| @@ -1141,13 +1142,13 @@ class RawCode : public RawObject {
|
| NOT_IN_PRECOMPILED(RawArray* deopt_info_array_);
|
| // (code-offset, function, code) triples.
|
| NOT_IN_PRECOMPILED(RawArray* static_calls_target_table_);
|
| - NOT_IN_PRECOMPILED(RawLocalVarDescriptors* var_descriptors_);
|
| NOT_IN_PRECOMPILED(RawArray* inlined_metadata_);
|
| - NOT_IN_PRECOMPILED(RawCodeSourceMap* code_source_map_);
|
| - NOT_IN_PRECOMPILED(RawArray* comments_);
|
| // If return_address_metadata_ is a Smi, it is the offset to the prologue.
|
| // Else, return_address_metadata_ is null.
|
| NOT_IN_PRECOMPILED(RawObject* return_address_metadata_);
|
| + NOT_IN_PRECOMPILED(RawLocalVarDescriptors* var_descriptors_);
|
| + NOT_IN_PRECOMPILED(RawCodeSourceMap* code_source_map_);
|
| + NOT_IN_PRECOMPILED(RawArray* comments_);
|
| RawObject** to() {
|
| #if defined(DART_PRECOMPILED_RUNTIME)
|
| return reinterpret_cast<RawObject**>(&ptr()->stackmaps_);
|
|
|