From 7ec0fde07816df30b5ab58d1a7a18aa4b68a374e Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Wed, 8 Mar 2017 12:43:30 +0000 Subject: [PATCH] Track libcore change 2c0c8889ff415431e3c2d6d5ac95748f8b284384. Update the size of Class' vtable. Test: make test-art-host Change-Id: I6613a3f1924a2347e0e4f9c4db31d126ab4deacc --- runtime/mirror/class.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/mirror/class.h b/runtime/mirror/class.h index b68eedcb1..c52b66aff 100644 --- a/runtime/mirror/class.h +++ b/runtime/mirror/class.h @@ -595,7 +595,7 @@ class MANAGED Class FINAL : public Object { // The size of java.lang.Class.class. static uint32_t ClassClassSize(PointerSize pointer_size) { // The number of vtable entries in java.lang.Class. - uint32_t vtable_entries = Object::kVTableLength + 73; + uint32_t vtable_entries = Object::kVTableLength + 70; return ComputeClassSize(true, vtable_entries, 0, 0, 4, 1, 0, pointer_size); } -- 2.11.0