Commit 9a619478 authored by olivf@chromium.org's avatar olivf@chromium.org

Fix missing spaces

BUG=
R=danno@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15587 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c5f20ef8
......@@ -506,7 +506,7 @@ void Type::TypePrint(FILE* out) {
bool first_entry = true;
PrintF(out, "{");
for (unsigned i = 0; i < sizeof(val)*8; ++i) {
int mask = (1<<i);
int mask = (1 << i);
if ((val & mask) != 0) {
if (!first_entry) PrintF(out, ",");
first_entry = false;
......
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