Index: src/mips64/lithium-mips64.cc |
diff --git a/src/mips64/lithium-mips64.cc b/src/mips64/lithium-mips64.cc |
index 060582585d744e953f32c7cdcdd0e396a33e87bb..f6a0f8d6bdf2e04abea87f25961e5069e920d4b7 100644 |
--- a/src/mips64/lithium-mips64.cc |
+++ b/src/mips64/lithium-mips64.cc |
@@ -338,8 +338,7 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) { |
void LLoadGlobalViaContext::PrintDataTo(StringStream* stream) { |
- stream->Add(String::cast(*name())->ToCString().get()); |
- stream->Add(" depth:%d slot:%d", depth(), slot_index()); |
+ stream->Add("depth:%d slot:%d", depth(), slot_index()); |
} |
@@ -362,10 +361,8 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) { |
void LStoreGlobalViaContext::PrintDataTo(StringStream* stream) { |
- stream->Add(String::cast(*name())->ToCString().get()); |
- stream->Add(" <- "); |
+ stream->Add("depth:%d slot:%d <- ", depth(), slot_index()); |
value()->PrintTo(stream); |
- stream->Add(" depth:%d slot:%d", depth(), slot_index()); |
} |