| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 0ed62d796584392585cd142af246fd4a314fe80b..21fd7837a688bcc5b8897390d264bdabd62f328f 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -317,8 +317,9 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) {
|
|
|
| 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);
|
| }
|
|
|
|
|