Chromium Code Reviews| Index: src/heap/mark-compact.cc |
| diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc |
| index e26653495ecf2ae7ff6bb9211798212dec8cbc1b..9b6c10d8a54df7f711223627b592243c589a9390 100644 |
| --- a/src/heap/mark-compact.cc |
| +++ b/src/heap/mark-compact.cc |
| @@ -286,8 +286,8 @@ bool MarkCompactCollector::StartCompaction(CompactionMode mode) { |
| TraceFragmentation(heap()->map_space()); |
| } |
| - heap()->old_space()->EvictEvacuationCandidatesFromFreeLists(); |
| - heap()->code_space()->EvictEvacuationCandidatesFromFreeLists(); |
| + heap()->old_space()->EvictEvacuationCandidatesFromLinearAllocationArea(); |
|
Michael Lippautz
2015/10/15 12:23:32
Fixed naming here as we do not touch free lists in
Hannes Payer (out of office)
2015/10/15 12:45:10
Acknowledged.
|
| + heap()->code_space()->EvictEvacuationCandidatesFromLinearAllocationArea(); |
| compacting_ = evacuation_candidates_.length() > 0; |
| } |