| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index bfccf94fcaf99ca67a55126656d4c3a14191d672..323fed40e58b2e0aa402bd6977222a52ee3306d0 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -852,7 +852,8 @@ class RawFunction : public RawObject {
|
| int32_t usage_counter_; // Incremented while function is running.
|
| int16_t num_fixed_parameters_;
|
| int16_t num_optional_parameters_; // > 0: positional; < 0: named.
|
| - int16_t deoptimization_counter_;
|
| + int8_t deoptimization_counter_;
|
| + int8_t was_compiled_;
|
| uint32_t kind_tag_; // See Function::KindTagBits.
|
| uint16_t optimized_instruction_count_;
|
| uint16_t optimized_call_site_count_;
|
|
|