From 6b5dd313e1f8d5bda3bac06b54629d05fe2d48dc Mon Sep 17 00:00:00 2001 From: jkummerow Date: Tue, 21 Apr 2015 06:22:09 -0700 Subject: [PATCH] Drop unused field from PrototypeInfo Review URL: https://codereview.chromium.org/1097313002 Cr-Commit-Position: refs/heads/master@{#27965} --- src/objects.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/objects.h b/src/objects.h index 0b85008b03..fd9e8f4933 100644 --- a/src/objects.h +++ b/src/objects.h @@ -6633,9 +6633,7 @@ class PrototypeInfo : public Struct { DECLARE_PRINTER(PrototypeInfo) DECLARE_VERIFIER(PrototypeInfo) - static const int kPrototypeObjectOffset = HeapObject::kHeaderSize; - static const int kPrototypeUsersOffset = - kPrototypeObjectOffset + kPointerSize; + static const int kPrototypeUsersOffset = HeapObject::kHeaderSize; static const int kValidityCellOffset = kPrototypeUsersOffset + kPointerSize; static const int kSize = kValidityCellOffset + kPointerSize;