Commit f2eb98b9 authored by erikcorry's avatar erikcorry Committed by Commit bot

Tiny fix to grokdump heap stats printer

R=hpayer@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1164693002

Cr-Commit-Position: refs/heads/master@{#28730}
parent 65cd41e3
......@@ -3142,7 +3142,7 @@ def AnalyzeMinidump(options, minidump_name):
oom_comment = " <----- HeapStats start marker"
elif maybe_address_contents == 0xdecade01:
oom_comment = " <----- HeapStats end marker"
else:
elif maybe_address_contents is not None:
oom_comment = " %d (%d Mbytes)" % (maybe_address_contents,
maybe_address_contents >> 20)
if slot == frame_pointer:
......
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