| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index b9de0488bbca299cfda57ac3a75e237af3f69abe..6d1c3dd3009467e83b78d692cdfb3a6cb28d00ab 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -361,8 +361,9 @@ LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
|
|
|
| void LStoreNamedField::PrintDataTo(StringStream* stream) {
|
| object()->PrintTo(stream);
|
| - hydrogen()->access().PrintTo(stream);
|
| - stream->Add(" <- ");
|
| + OStringStream os;
|
| + os << hydrogen()->access() << " <- ";
|
| + stream->Add(os.c_str());
|
| value()->PrintTo(stream);
|
| }
|
|
|
|
|