Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index 8133c31a0a5df75b5cce44a264fde6d67f113456..ad2a1e7779add5001e74d7ca740609939d1843ca 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -1609,7 +1609,7 @@ class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, 0> { |
DECLARE_HYDROGEN_ACCESSOR(LoadKeyed) |
virtual void PrintDataTo(StringStream* stream); |
- uint32_t additional_index() const { return hydrogen()->index_offset(); } |
+ uint32_t base_offset() const { return hydrogen()->base_offset(); } |
}; |
@@ -2178,7 +2178,7 @@ class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, 0> { |
virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE; |
bool NeedsCanonicalization() { return hydrogen()->NeedsCanonicalization(); } |
- uint32_t additional_index() const { return hydrogen()->index_offset(); } |
+ uint32_t base_offset() const { return hydrogen()->base_offset(); } |
}; |