Commit e75c5a64 authored by ziyang's avatar ziyang Committed by Commit bot

S390: Change printf format specifier in mark-compact.cc

fragmentation_limit_kb has type of size_t, using PRIuS instead of V8PRIdPTR.

R=mlippautz@chromium.org, ulan@chromium.org
BUG=

Review-Url: https://codereview.chromium.org/2425013002
Cr-Commit-Position: refs/heads/master@{#40371}
parent a276bc89
......@@ -716,7 +716,7 @@ void MarkCompactCollector::CollectEvacuationCandidates(PagedSpace* space) {
if (FLAG_trace_fragmentation_verbose) {
PrintIsolate(isolate(),
"compaction-selection-page: space=%s free_bytes_page=%zu "
"fragmentation_limit_kb=%" V8PRIdPTR
"fragmentation_limit_kb=%" PRIuS
" fragmentation_limit_percent=%d sum_compaction_kb=%zu "
"compaction_limit_kb=%zu\n",
AllocationSpaceName(space->identity()), free_bytes / KB,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment