| Index: src/ic/mips/ic-mips.cc
|
| diff --git a/src/ic/mips/ic-mips.cc b/src/ic/mips/ic-mips.cc
|
| index a1a118135bd336970c449b4c644997148b48050f..beff9a90a67b61684c4a0c42ec7b055a9abb2625 100644
|
| --- a/src/ic/mips/ic-mips.cc
|
| +++ b/src/ic/mips/ic-mips.cc
|
| @@ -436,7 +436,7 @@ void KeyedLoadIC::GenerateMegamorphic(MacroAssembler* masm,
|
| Handle<TypeFeedbackVector> dummy_vector =
|
| TypeFeedbackVector::DummyVector(masm->isolate());
|
| int slot_index = dummy_vector->GetIndex(
|
| - FeedbackVectorICSlot(TypeFeedbackVector::kDummyKeyedLoadICSlot));
|
| + FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedLoadICSlot));
|
| __ LoadRoot(vector, Heap::kDummyVectorRootIndex);
|
| __ li(slot, Operand(Smi::FromInt(slot_index)));
|
|
|
| @@ -685,7 +685,7 @@ void KeyedStoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| Handle<TypeFeedbackVector> dummy_vector =
|
| TypeFeedbackVector::DummyVector(masm->isolate());
|
| int slot_index = dummy_vector->GetIndex(
|
| - FeedbackVectorICSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot));
|
| + FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot));
|
| __ LoadRoot(vector, Heap::kDummyVectorRootIndex);
|
| __ li(slot, Operand(Smi::FromInt(slot_index)));
|
| }
|
|
|