Reviewers: Hannes Payer,

Description:
Removed unbalanced brackets when printing an LEnvironment.

Please review this at https://codereview.chromium.org/14286005/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/lithium.cc


Index: src/lithium.cc
diff --git a/src/lithium.cc b/src/lithium.cc
index 9f50d6c72502ee05891e90e087e9dca10a6c1028..58e6aa6a339bf8010a0f49bc5c2ff2510297bb04 100644
--- a/src/lithium.cc
+++ b/src/lithium.cc
@@ -177,8 +177,8 @@ void LEnvironment::PrintTo(StringStream* stream) {
   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.


Reply via email to