Index: src/x64/lithium-codegen-x64.cc |
diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc |
index af5bf45a3f9701cb985a8671801341fd8e6673b5..c3fbba4e417488accef545c0749f58ca3947f905 100644 |
--- a/src/x64/lithium-codegen-x64.cc |
+++ b/src/x64/lithium-codegen-x64.cc |
@@ -3801,8 +3801,7 @@ void LCodeGen::DoCallNamed(LCallNamed* instr) { |
ASSERT(ToRegister(instr->result()).is(rax)); |
int arity = instr->arity(); |
- Handle<Code> ic = |
- isolate()->stub_cache()->ComputeCallInitialize(arity, NOT_CONTEXTUAL); |
+ Handle<Code> ic = isolate()->stub_cache()->ComputeCallInitialize(arity); |
__ Move(rcx, instr->name()); |
CallCode(ic, RelocInfo::CODE_TARGET, instr); |
} |
@@ -3828,8 +3827,7 @@ void LCodeGen::DoCallGlobal(LCallGlobal* instr) { |
ASSERT(ToRegister(instr->context()).is(rsi)); |
ASSERT(ToRegister(instr->result()).is(rax)); |
int arity = instr->arity(); |
- Handle<Code> ic = |
- isolate()->stub_cache()->ComputeCallInitialize(arity, CONTEXTUAL); |
+ Handle<Code> ic = isolate()->stub_cache()->ComputeCallInitialize(arity); |
__ Move(rcx, instr->name()); |
CallCode(ic, RelocInfo::CODE_TARGET, instr); |
} |