From 76d83daabfeea34fe19f0b71ebfa215ace76072a Mon Sep 17 00:00:00 2001 From: Wenyu Zhao Date: Fri, 16 Apr 2021 22:21:16 +1000 Subject: [PATCH] [heap] Fix binary size regression This fixes the binary size regression introduced by https://chromium-review.googlesource.com/c/v8/v8/+/2247561 Bug: v8:11643 Change-Id: Ic615b1820620dc7bfadce3075ce04b4d6d1f4b64 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2831160 Commit-Queue: Wenyu Zhao Commit-Queue: Ulan Degenbaev Reviewed-by: Ulan Degenbaev Cr-Commit-Position: refs/heads/master@{#73998} --- src/heap/marking-visitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heap/marking-visitor.h b/src/heap/marking-visitor.h index 4ea72422a4..1d28d84173 100644 --- a/src/heap/marking-visitor.h +++ b/src/heap/marking-visitor.h @@ -133,7 +133,7 @@ class MarkingVisitorBase : public HeapVisitor { V8_INLINE int VisitWeakCell(Map map, WeakCell object); // ObjectVisitor overrides. - V8_INLINE void VisitMapPointer(HeapObject host) final { + void VisitMapPointer(HeapObject host) final { // Note that we are skipping the recording the slot because map objects // can't move, so this is safe (see ProcessStrongHeapObject for comparison) MarkObject(host, HeapObject::cast(host.map()));