From 1afdbb396ccac696fd83daa4723e196142a9effb Mon Sep 17 00:00:00 2001 From: "hpayer@chromium.org" Date: Fri, 18 Jul 2014 11:30:50 +0000 Subject: [PATCH] Fix 64-bit compile. BUG= R=jarin@chromium.org Review URL: https://codereview.chromium.org/397373006 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22472 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mark-compact.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mark-compact.cc b/src/mark-compact.cc index 5c8c767..91bb9d0 100644 --- a/src/mark-compact.cc +++ b/src/mark-compact.cc @@ -3974,14 +3974,14 @@ static inline Address StartOfLiveObject(Address block_address, uint32_t cell) { // Force instantiation of templatized SweepConservatively method for // SWEEP_ON_MAIN_THREAD mode. -template intptr_t MarkCompactCollector:: +template int MarkCompactCollector:: SweepConservatively( PagedSpace*, FreeList*, Page*); // Force instantiation of templatized SweepConservatively method for // SWEEP_IN_PARALLEL mode. -template intptr_t MarkCompactCollector:: +template int MarkCompactCollector:: SweepConservatively( PagedSpace*, FreeList*, Page*); -- 2.7.4