diff options
Diffstat (limited to 'runtime/art_method.h')
| -rw-r--r-- | runtime/art_method.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/art_method.h b/runtime/art_method.h index ec00a7b900..5ca362ce2c 100644 --- a/runtime/art_method.h +++ b/runtime/art_method.h @@ -490,12 +490,12 @@ class ArtMethod FINAL { // Update heap objects and non-entrypoint pointers by the passed in visitor for image relocation. // Does not use read barrier. template <typename Visitor> - ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor) + ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor, size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_); // Update entry points by passing them through the visitor. template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename Visitor> - ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor); + ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor, size_t pointer_size); protected: // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |