Index: runtime/vm/assembler_arm.h |
=================================================================== |
--- runtime/vm/assembler_arm.h (revision 45086) |
+++ runtime/vm/assembler_arm.h (working copy) |
@@ -340,8 +340,13 @@ |
ASSERT(buffer_.pointer_offsets().length() == 0); // No pointers in code. |
return buffer_.pointer_offsets(); |
} |
- const GrowableObjectArray& object_pool() const { return object_pool_.data(); } |
+ const GrowableObjectArray& object_pool_data() const { |
+ return object_pool_.data(); |
+ } |
+ |
+ ObjectPool& object_pool() { return object_pool_; } |
+ |
bool use_far_branches() const { |
return FLAG_use_far_branches || use_far_branches_; |
} |