| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 7a4de9f4ccad29a23d8605c4738d86492276bb96..1e54695d3ffec4eb969015abdae659f842a8e835 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -337,7 +337,7 @@ void LLoadKeyed::PrintDataTo(StringStream* stream) {
|
| stream->Add("[");
|
| key()->PrintTo(stream);
|
| if (hydrogen()->IsDehoisted()) {
|
| - stream->Add(" + %d]", additional_index());
|
| + stream->Add(" + %d]", base_offset());
|
| } else {
|
| stream->Add("]");
|
| }
|
| @@ -349,7 +349,7 @@ void LStoreKeyed::PrintDataTo(StringStream* stream) {
|
| stream->Add("[");
|
| key()->PrintTo(stream);
|
| if (hydrogen()->IsDehoisted()) {
|
| - stream->Add(" + %d] <-", additional_index());
|
| + stream->Add(" + %d] <-", base_offset());
|
| } else {
|
| stream->Add("] <- ");
|
| }
|
|
|