Reviewers: Jakob,

Message:
And I was wondering why this application was call o() all over the place.

Description:
Fix printing of HCallKnownGlobal.

[email protected]


Please review this at https://chromiumcodereview.appspot.com/10941009/

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

Affected files:
  M src/hydrogen-instructions.cc


Index: src/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index 0192a763f0ab8fa1f5fdde06360b96e28a142ce8..2c3f2daebbf141c38b4ef2c1ce0f5caeb383c462 100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -707,7 +707,7 @@ void HCallGlobal::PrintDataTo(StringStream* stream) {


 void HCallKnownGlobal::PrintDataTo(StringStream* stream) {
-  stream->Add("o ", target()->shared()->DebugName());
+  stream->Add("%o ", target()->shared()->DebugName());
   stream->Add("#%d", argument_count());
 }



--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to