| Index: src/ic/x64/ic-x64.cc
|
| diff --git a/src/ic/x64/ic-x64.cc b/src/ic/x64/ic-x64.cc
|
| index ff74a965e43aaf67314a06419580ba35adc02afb..4da5ba51df260db09bca2202e531703c3158ea05 100644
|
| --- a/src/ic/x64/ic-x64.cc
|
| +++ b/src/ic/x64/ic-x64.cc
|
| @@ -346,7 +346,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));
|
| __ Move(vector, dummy_vector);
|
| __ Move(slot, Smi::FromInt(slot_index));
|
|
|
| @@ -574,7 +574,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));
|
| __ Move(vector, dummy_vector);
|
| __ Move(slot, Smi::FromInt(slot_index));
|
| }
|
|
|