Reviewers: Hannes Payer,
Message:
Committed patchset #1 manually as r20256 (presubmit successful).
Description:
HInnerAllocatedObject hydrogen trace printed offset incorrectly.
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=20256
Please review this at https://codereview.chromium.org/210873003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+2, -1 lines):
M src/hydrogen-instructions.cc
Index: src/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index
cfe5f1a60cd7f2a15ece7f75d3da2a989fb12168..fd1929ec6ec78937269cd9cfff060147a1be175b
100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -3519,7 +3519,8 @@ void HLoadGlobalGeneric::PrintDataTo(StringStream*
stream) {
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.