Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(672)

Unified Diff: src/mark-compact.cc

Issue 397373006: Fix 64-bit compile. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698