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

S390: Change printf format specifier for promoted and semi_space_copied in GcTracer

promoted and semi_space_copied are still int type, so it is needed to use V8PRIdPTR
as their printf format specifier.

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

Review-Url: https://codereview.chromium.org/2415183003
Cr-Commit-Position: refs/heads/master@{#40317}
parent b3852ab3
......@@ -467,9 +467,9 @@ void GCTracer::PrintNVP() const {
" "
"allocated=%" PRIuS
" "
"promoted=%" PRIuS
"promoted=%" V8PRIdPTR
" "
"semi_space_copied=%" PRIuS
"semi_space_copied=%" V8PRIdPTR
" "
"nodes_died_in_new=%d "
"nodes_copied_in_new=%d "
......@@ -579,9 +579,9 @@ void GCTracer::PrintNVP() const {
" "
"allocated=%" PRIuS
" "
"promoted=%" PRIuS
"promoted=%" V8PRIdPTR
" "
"semi_space_copied=%" PRIuS
"semi_space_copied=%" V8PRIdPTR
" "
"nodes_died_in_new=%d "
"nodes_copied_in_new=%d "
......
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