| Index: src/arm64/lithium-arm64.cc
|
| diff --git a/src/arm64/lithium-arm64.cc b/src/arm64/lithium-arm64.cc
|
| index e1119c2c678e4941ebb47e344ab5979dd9939a3c..c432f245a539b4c976190961188bf05a271a680f 100644
|
| --- a/src/arm64/lithium-arm64.cc
|
| +++ b/src/arm64/lithium-arm64.cc
|
| @@ -297,8 +297,7 @@ void LStoreKeyedGeneric::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());
|
| }
|
|
|
|
|
| @@ -322,10 +321,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());
|
| }
|
|
|
|
|
|
|