diff options
| author | 2015-05-07 09:41:00 +0100 | |
|---|---|---|
| committer | 2015-11-09 10:35:22 +0000 | |
| commit | 87bd212e11d31ef62f1bb2377f921b09bc537b1f (patch) | |
| tree | 7f9e963286d6005d446464109f790f7073325852 /runtime/mirror/reference-inl.h | |
| parent | c712250ce54eb95603f1e09b96a86a3e99ec6827 (diff) | |
Update class layout for j.l.ref.Reference.
One additional vtable entry.
Change-Id: I34c951739def06a9e27c0b44f8a7e83613541537
Diffstat (limited to 'runtime/mirror/reference-inl.h')
| -rw-r--r-- | runtime/mirror/reference-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/reference-inl.h b/runtime/mirror/reference-inl.h index b353402602..3c348ffb43 100644 --- a/runtime/mirror/reference-inl.h +++ b/runtime/mirror/reference-inl.h @@ -23,7 +23,7 @@ namespace art { namespace mirror { inline uint32_t Reference::ClassSize() { - uint32_t vtable_entries = Object::kVTableLength + 5; + uint32_t vtable_entries = Object::kVTableLength + 4; return Class::ComputeClassSize(false, vtable_entries, 2, 0, 0); } |