Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 067863d0b0f4d4a1df4a348f11943f5d04c4e3b6..76a107dc523376a35a30c3b8d2a2da782c5edcc2 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -386,7 +386,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("]"); |
} |
@@ -398,7 +398,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("] <- "); |
} |