Index: src/x64/builtins-x64.cc |
diff --git a/src/x64/builtins-x64.cc b/src/x64/builtins-x64.cc |
index 0de2e6cd2546b2ed4b870c9e6e31e56f5b0e61dc..ca9f02a6c0653740b38c2cc102aced6097527ffb 100644 |
--- a/src/x64/builtins-x64.cc |
+++ b/src/x64/builtins-x64.cc |
@@ -1121,7 +1121,8 @@ static void Generate_PushAppliedArguments(MacroAssembler* masm, |
int index = feedback_vector->GetIndex(FeedbackVectorICSlot(0)); |
__ Move(slot, Smi::FromInt(index)); |
__ Move(vector, 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 |