Reviewers: jarin,

Message:
Committed patchset #1 manually as r22472 (tree was closed).

Description:
Fix 64-bit compile.

BUG=
[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=22472

Please review this at https://codereview.chromium.org/397373006/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -2 lines):
  M src/mark-compact.cc


Index: src/mark-compact.cc
diff --git a/src/mark-compact.cc b/src/mark-compact.cc
index 5c8c767edc9d3ceb60727b5db481db2952775f1f..91bb9d0e068d7e506fdcbd2b47f0a06be4848296 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<MarkCompactCollector::SWEEP_ON_MAIN_THREAD>(
         PagedSpace*, FreeList*, Page*);


 // Force instantiation of templatized SweepConservatively method for
 // SWEEP_IN_PARALLEL mode.
-template intptr_t MarkCompactCollector::
+template int MarkCompactCollector::
     SweepConservatively<MarkCompactCollector::SWEEP_IN_PARALLEL>(
         PagedSpace*, FreeList*, Page*);



--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to