| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index 08e0dae1a15a4fe00bc52b1bfd5631725b5978a6..fad096a528b2ca562567ebcfb8ac18d9efbe13ee 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -400,8 +400,7 @@ LOperand* LPlatformChunk::GetNextSpillSlot(bool is_double) {
|
|
|
| void LStoreNamedField::PrintDataTo(StringStream* stream) {
|
| object()->PrintTo(stream);
|
| - stream->Add(".");
|
| - stream->Add(*String::cast(*name())->ToCString());
|
| + stream->Add(".@%d", offset()); // TODO(titzer): use HObjectAccess
|
| stream->Add(" <- ");
|
| value()->PrintTo(stream);
|
| }
|
|
|