Revision: 20256
Author:   [email protected]
Date:     Tue Mar 25 16:32:23 2014 UTC
Log:      HInnerAllocatedObject hydrogen trace printed offset incorrectly.

[email protected]

Review URL: https://codereview.chromium.org/210873003
http://code.google.com/p/v8/source/detail?r=20256

Modified:
 /branches/bleeding_edge/src/hydrogen-instructions.cc

=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.cc Tue Mar 25 09:09:24 2014 UTC +++ /branches/bleeding_edge/src/hydrogen-instructions.cc Tue Mar 25 16:32:23 2014 UTC
@@ -3620,7 +3620,8 @@

 void HInnerAllocatedObject::PrintDataTo(StringStream* stream) {
   base_object()->PrintNameTo(stream);
-  stream->Add(" offset %d", offset());
+  stream->Add(" offset ");
+  offset()->PrintTo(stream);
 }


--
--
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/d/optout.

Reply via email to