Revision: 13554
Author:   [email protected]
Date:     Wed Jan 30 05:13:04 2013
Log: Fix build bot. Force instantiation of templatized SweepConservatively method.

BUG=

Review URL: https://codereview.chromium.org/12079075
http://code.google.com/p/v8/source/detail?r=13554

Modified:
 /branches/bleeding_edge/src/mark-compact.cc

=======================================
--- /branches/bleeding_edge/src/mark-compact.cc Wed Jan 30 04:47:41 2013
+++ /branches/bleeding_edge/src/mark-compact.cc Wed Jan 30 05:13:04 2013
@@ -3543,6 +3543,20 @@
     return size - free_list->Free(start, size);
   }
 }
+
+
+// Force instantiation of templatized SweepConservatively method for
+// SWEEP_SEQUENTIALLY mode.
+template intptr_t MarkCompactCollector::
+    SweepConservatively<MarkCompactCollector::SWEEP_SEQUENTIALLY>(
+        PagedSpace*, FreeList*, Page*);
+
+
+// Force instantiation of templatized SweepConservatively method for
+// SWEEP_IN_PARALLEL mode.
+template intptr_t MarkCompactCollector::
+    SweepConservatively<MarkCompactCollector::SWEEP_IN_PARALLEL>(
+        PagedSpace*, FreeList*, Page*);


 // Sweeps a space conservatively.  After this has been done the larger free

--
--
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/groups/opt_out.


Reply via email to