Revision: 9090 Author: [email protected] Date: Thu Sep 1 01:00:40 2011 Log: Fix deoptimization data printing.
Remove a spurious newline. [email protected] BUG= TEST= Review URL: http://codereview.chromium.org/7792052 http://code.google.com/p/v8/source/detail?r=9090 Modified: /branches/bleeding_edge/src/objects.cc ======================================= --- /branches/bleeding_edge/src/objects.cc Fri Aug 26 06:03:30 2011 +++ /branches/bleeding_edge/src/objects.cc Thu Sep 1 01:00:40 2011 @@ -7009,7 +7009,7 @@ JSFunction* function = JSFunction::cast(LiteralArray()->get(function_id)); unsigned height = iterator.Next(); - PrintF(out, "{ast_id=%d, \nfunction=", ast_id); + PrintF(out, "{ast_id=%d, function=", ast_id); function->PrintName(out); PrintF(out, ", height=%u}", height); break; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
