Commit 5b3ce109 authored by ager@chromium.org's avatar ager@chromium.org

Fix lint issue.

Review URL: http://codereview.chromium.org/197006

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2819 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 8150609e
......@@ -278,7 +278,10 @@ void Debugger::Debug() {
if (i <= 10) {
PrintF("%3s: 0x%08x %d\n", reg_names[i], value, value);
} else {
PrintF("%3s: 0x%08x %d\n", reg_names[15 + 16 - i], value, value);
PrintF("%3s: 0x%08x %d\n",
reg_names[15 + 16 - i],
value,
value);
}
}
}
......
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