| Index: src/ic/ia32/ic-ia32.cc
|
| diff --git a/src/ic/ia32/ic-ia32.cc b/src/ic/ia32/ic-ia32.cc
|
| index 7a6a41541ccac5c20afcd5248fecbb3c0960119b..9c311aa6f18de59f42eb487ae851f982a72b3a5f 100644
|
| --- a/src/ic/ia32/ic-ia32.cc
|
| +++ b/src/ic/ia32/ic-ia32.cc
|
| @@ -341,7 +341,7 @@ void KeyedLoadIC::GenerateMegamorphic(MacroAssembler* masm,
|
| Handle<TypeFeedbackVector> dummy_vector =
|
| TypeFeedbackVector::DummyVector(isolate);
|
| int slot = dummy_vector->GetIndex(
|
| - FeedbackVectorICSlot(TypeFeedbackVector::kDummyKeyedLoadICSlot));
|
| + FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedLoadICSlot));
|
| __ push(Immediate(Smi::FromInt(slot)));
|
| __ push(Immediate(dummy_vector));
|
|
|
| @@ -569,7 +569,7 @@ void KeyedStoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| Handle<TypeFeedbackVector> dummy_vector =
|
| TypeFeedbackVector::DummyVector(masm->isolate());
|
| int slot = dummy_vector->GetIndex(
|
| - FeedbackVectorICSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot));
|
| + FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot));
|
| __ push(Immediate(Smi::FromInt(slot)));
|
| __ push(Immediate(dummy_vector));
|
| }
|
|
|