Index: runtime/vm/raw_object.h |
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
index f438fc9366d46f1e03a57f57e7bc43123cb40d5e..da40792331c2ef26cdbe5832d0507c2eb209c146 100644 |
--- a/runtime/vm/raw_object.h |
+++ b/runtime/vm/raw_object.h |
@@ -1064,9 +1064,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. |