| Index: src/ia32/builtins-ia32.cc
|
| diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc
|
| index 2f45f542a8c67cfdef564f1a2e2d2a4a22b01559..7216d9c44e97f1ebdb5005a56664c8532ea37f7c 100644
|
| --- a/src/ia32/builtins-ia32.cc
|
| +++ b/src/ia32/builtins-ia32.cc
|
| @@ -1056,7 +1056,8 @@ static void Generate_PushAppliedArguments(MacroAssembler* masm,
|
| int index = feedback_vector->GetIndex(FeedbackVectorICSlot(0));
|
| __ mov(slot, Immediate(Smi::FromInt(index)));
|
| __ mov(vector, Immediate(feedback_vector));
|
| - Handle<Code> ic = KeyedLoadICStub(masm->isolate()).GetCode();
|
| + Handle<Code> ic =
|
| + KeyedLoadICStub(masm->isolate(), LoadICState(kNoExtraICState)).GetCode();
|
| __ call(ic, RelocInfo::CODE_TARGET);
|
| // It is important that we do not have a test instruction after the
|
| // call. A test instruction after the call is used to indicate that
|
|
|