| Index: src/ic/ppc/ic-ppc.cc
|
| diff --git a/src/ic/ppc/ic-ppc.cc b/src/ic/ppc/ic-ppc.cc
|
| index 09117179ea2a3617d81ac8c069f2d2097f39654a..00b45b6654d25bd6cd9e9a9f103ae7fd2c7e89a7 100644
|
| --- a/src/ic/ppc/ic-ppc.cc
|
| +++ b/src/ic/ppc/ic-ppc.cc
|
| @@ -442,7 +442,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);
|
| __ LoadSmiLiteral(slot, Smi::FromInt(slot_index));
|
|
|
| @@ -715,7 +715,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);
|
| __ LoadSmiLiteral(slot, Smi::FromInt(slot_index));
|
| }
|
|
|