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