Index: src/ppc/code-stubs-ppc.cc |
diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc |
index 9cc2bed73e5704fc99a364f99efe0d6bc8892c1d..66124fb3505110302dc6a809850b7c0570d0e369 100644 |
--- a/src/ppc/code-stubs-ppc.cc |
+++ b/src/ppc/code-stubs-ppc.cc |
@@ -4612,7 +4612,7 @@ |
void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) { |
EmitLoadTypeFeedbackVector(masm, LoadWithVectorDescriptor::VectorRegister()); |
- KeyedLoadICStub stub(isolate()); |
+ KeyedLoadICStub stub(isolate(), state()); |
stub.GenerateForTrampoline(masm); |
} |
@@ -4829,7 +4829,7 @@ |
__ CompareRoot(feedback, Heap::kmegamorphic_symbolRootIndex); |
__ bne(&try_poly_name); |
Handle<Code> megamorphic_stub = |
- KeyedLoadIC::ChooseMegamorphicStub(masm->isolate()); |
+ KeyedLoadIC::ChooseMegamorphicStub(masm->isolate(), GetExtraICState()); |
__ Jump(megamorphic_stub, RelocInfo::CODE_TARGET); |
__ bind(&try_poly_name); |