| Index: src/heap/mark-compact-inl.h
|
| diff --git a/src/heap/mark-compact-inl.h b/src/heap/mark-compact-inl.h
|
| index 281ece4cc8d693601e26bd5a6df454064dccfa5a..455f443a8b0300d4c80bc570075222cc50458542 100644
|
| --- a/src/heap/mark-compact-inl.h
|
| +++ b/src/heap/mark-compact-inl.h
|
| @@ -12,17 +12,6 @@
|
| namespace v8 {
|
| namespace internal {
|
|
|
| -inline std::vector<Page*>& MarkCompactCollector::sweeping_list(Space* space) {
|
| - if (space == heap()->old_space()) {
|
| - return sweeping_list_old_space_;
|
| - } else if (space == heap()->code_space()) {
|
| - return sweeping_list_code_space_;
|
| - }
|
| - DCHECK_EQ(space, heap()->map_space());
|
| - return sweeping_list_map_space_;
|
| -}
|
| -
|
| -
|
| void MarkCompactCollector::PushBlack(HeapObject* obj) {
|
| DCHECK(Marking::IsBlack(Marking::MarkBitFrom(obj)));
|
| if (marking_deque_.Push(obj)) {
|
|
|