| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index dcbae758c5c01631dbb3045b938c940a047e883b..6f33280dd301071387d4ca00ed52527f1ebb5660 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -1080,8 +1080,9 @@ class RawCode : public RawObject {
|
| uword entry_point_;
|
|
|
| RawObject** from() {
|
| - return reinterpret_cast<RawObject**>(&ptr()->instructions_);
|
| + return reinterpret_cast<RawObject**>(&ptr()->active_instructions_);
|
| }
|
| + RawInstructions* active_instructions_;
|
| RawInstructions* instructions_;
|
| RawObjectPool* object_pool_;
|
| // If owner_ is Function::null() the owner is a regular stub.
|
|
|