| Index: src/heap/mark-compact.cc
|
| diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc
|
| index 1bfc15da4ea66d70bf0dcbb49d6a5f01728bef7a..2eb9a1b79195f3c38e9b2c1df6f5daf84dac66f1 100644
|
| --- a/src/heap/mark-compact.cc
|
| +++ b/src/heap/mark-compact.cc
|
| @@ -3331,7 +3331,7 @@ int MarkCompactCollector::Sweeper::RawSweep(
|
|
|
| p->concurrent_sweeping_state().SetValue(Page::kSweepingDone);
|
| if (free_list_mode == IGNORE_FREE_LIST) return 0;
|
| - return FreeList::GuaranteedAllocatable(static_cast<int>(max_freed_bytes));
|
| + return static_cast<int>(FreeList::GuaranteedAllocatable(max_freed_bytes));
|
| }
|
|
|
| void MarkCompactCollector::InvalidateCode(Code* code) {
|
|
|