Commit cb55675a authored by svenpanne's avatar svenpanne Committed by Commit bot

Unbreak %DebugPrint output.

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

Cr-Commit-Position: refs/heads/master@{#28572}
parent 6726406c
......@@ -278,8 +278,9 @@ RUNTIME_FUNCTION(Runtime_DebugPrint) {
// and print some interesting cpu debugging info.
JavaScriptFrameIterator it(isolate);
JavaScriptFrame* frame = it.frame();
os << "fp = " << frame->fp() << ", sp = " << frame->sp()
<< ", caller_sp = " << frame->caller_sp() << ": ";
os << "fp = " << static_cast<void*>(frame->fp())
<< ", sp = " << static_cast<void*>(frame->sp())
<< ", caller_sp = " << static_cast<void*>(frame->caller_sp()) << ": ";
} else {
os << "DebugPrint: ";
}
......
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