| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index 984561693215044299677b81d4ae1d33908bba2f..aa14df0788fe68af13fbe004f8dc814a82c72a52 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -869,6 +869,7 @@ class RawFunction : public RawObject {
|
| uint32_t kind_tag_; // See Function::KindTagBits.
|
| int16_t num_fixed_parameters_;
|
| int16_t num_optional_parameters_; // > 0: positional; < 0: named.
|
| + NOT_IN_PRECOMPILED(void* kernel_function_);
|
| NOT_IN_PRECOMPILED(uint16_t optimized_instruction_count_);
|
| NOT_IN_PRECOMPILED(uint16_t optimized_call_site_count_);
|
| NOT_IN_PRECOMPILED(int8_t deoptimization_counter_);
|
| @@ -964,6 +965,7 @@ class RawField : public RawObject {
|
| int8_t guarded_list_length_in_object_offset_;
|
|
|
| uint8_t kind_bits_; // static, final, const, has initializer....
|
| + NOT_IN_PRECOMPILED(void* kernel_field_);
|
|
|
| friend class CidRewriteVisitor;
|
| };
|
|
|