Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 678c0ca70c5bb3edeadf4db931d626f2de0d4442..a9122a6d9d628da2359f059e6fdca17e78723c2e 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -430,7 +430,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("]"); |
} |
@@ -442,7 +442,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("] <- "); |
} |