Revision: 14402
Author: [email protected]
Date: Wed Apr 24 02:31:55 2013
Log: Removed unbalanced brackets when printing an LEnvironment.
Review URL: https://codereview.chromium.org/14286005
http://code.google.com/p/v8/source/detail?r=14402
Modified:
/branches/bleeding_edge/src/lithium.cc
=======================================
--- /branches/bleeding_edge/src/lithium.cc Mon Apr 22 02:48:35 2013
+++ /branches/bleeding_edge/src/lithium.cc Wed Apr 24 02:31:55 2013
@@ -177,8 +177,8 @@
if (deoptimization_index() != Safepoint::kNoDeoptimizationIndex) {
stream->Add("deopt_id=%d|", deoptimization_index());
}
- stream->Add("[parameters=%d|", parameter_count());
- stream->Add("[arguments_stack_height=%d|", arguments_stack_height());
+ stream->Add("parameters=%d|", parameter_count());
+ stream->Add("arguments_stack_height=%d|", arguments_stack_height());
for (int i = 0; i < values_.length(); ++i) {
if (i != 0) stream->Add(";");
if (values_[i] == NULL) {
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.