Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 7c1f65ffc30e090d2df59611f7129b448b1781b4..df1bb4745fc1b3c2546336799fbf566536c8a283 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -370,7 +370,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("]"); |
} |
@@ -382,7 +382,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("] <- "); |
} |