Revision: 13062
Author:   [email protected]
Date:     Mon Nov 26 08:14:49 2012
Log:      MIPS: Fix MIPS port of r13032 (25d0edd7).

This commit fixes a small typo in r13032 (25d0edd7).

BUG=
TEST=

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

Modified:
 /branches/bleeding_edge/src/mips/lithium-mips.cc

=======================================
--- /branches/bleeding_edge/src/mips/lithium-mips.cc Thu Nov 22 02:19:05 2012 +++ /branches/bleeding_edge/src/mips/lithium-mips.cc Mon Nov 26 08:14:49 2012
@@ -396,6 +396,15 @@
   }
   value()->PrintTo(stream);
 }
+
+
+void LStoreKeyedGeneric::PrintDataTo(StringStream* stream) {
+  object()->PrintTo(stream);
+  stream->Add("[");
+  key()->PrintTo(stream);
+  stream->Add("] <- ");
+  value()->PrintTo(stream);
+}


 void LTransitionElementsKind::PrintDataTo(StringStream* stream) {

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

Reply via email to