| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 4768cc82a41fa68a0cee12d94f0624f4a8c84ccb..5cd71820d93b83901220d54ba06e2e2656335281 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -378,8 +378,7 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) {
|
|
|
| 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);
|
| }
|
|
|