Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index 24259c8b7bb4b1251851a6e336f16877c6df81fc..b729985e19484e5d87fab68b4dc80fc4c6db2eb5 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/hydrogen-instructions.cc |
@@ -3601,8 +3601,8 @@ std::ostream& HStoreNamedGeneric::PrintDataTo( |
std::ostream& HStoreGlobalViaContext::PrintDataTo( |
std::ostream& os) const { // NOLINT |
- return os << name()->ToCString().get() << " = " << NameOf(value()) |
- << " depth:" << depth() << " slot:" << slot_index(); |
+ return os << " depth:" << depth() << " slot:" << slot_index() << " = " |
+ << NameOf(value()); |
} |
@@ -3658,8 +3658,7 @@ std::ostream& HLoadGlobalGeneric::PrintDataTo( |
std::ostream& HLoadGlobalViaContext::PrintDataTo( |
std::ostream& os) const { // NOLINT |
- return os << name()->ToCString().get() << " " |
- << "depth:" << depth() << " slot:" << slot_index(); |
+ return os << "depth:" << depth() << " slot:" << slot_index(); |
} |