| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index bd1863d1f4ce78eb625be1648bfe120f82a5f24c..a528fe4e7311b5a552306c6f4db7fee17e1efa93 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -366,8 +366,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);
|
| }
|
|
|
|
|