Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 137d4f4c3ea56489b1057cd58e148c0264088e61..4e3ea98161dd278f177ecf10918fb3262bac2cb2 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -2981,8 +2981,8 @@ void LCodeGen::DoCallKeyed(LCallKeyed* instr) { |
ASSERT(ToRegister(instr->result()).is(eax)); |
int arity = instr->arity(); |
- Handle<Code> ic = isolate()->stub_cache()-> |
- ComputeKeyedCallInitialize(arity, NOT_IN_LOOP); |
+ Handle<Code> ic = |
+ isolate()->stub_cache()->ComputeKeyedCallInitialize(arity); |
CallCode(ic, RelocInfo::CODE_TARGET, instr); |
} |
@@ -2994,7 +2994,7 @@ void LCodeGen::DoCallNamed(LCallNamed* instr) { |
int arity = instr->arity(); |
RelocInfo::Mode mode = RelocInfo::CODE_TARGET; |
Handle<Code> ic = |
- isolate()->stub_cache()->ComputeCallInitialize(arity, NOT_IN_LOOP, mode); |
+ isolate()->stub_cache()->ComputeCallInitialize(arity, mode); |
__ mov(ecx, instr->name()); |
CallCode(ic, mode, instr); |
} |
@@ -3005,7 +3005,7 @@ void LCodeGen::DoCallFunction(LCallFunction* instr) { |
ASSERT(ToRegister(instr->result()).is(eax)); |
int arity = instr->arity(); |
- CallFunctionStub stub(arity, NOT_IN_LOOP, RECEIVER_MIGHT_BE_IMPLICIT); |
+ CallFunctionStub stub(arity, RECEIVER_MIGHT_BE_IMPLICIT); |
CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
__ Drop(1); |
} |
@@ -3018,7 +3018,7 @@ void LCodeGen::DoCallGlobal(LCallGlobal* instr) { |
int arity = instr->arity(); |
RelocInfo::Mode mode = RelocInfo::CODE_TARGET_CONTEXT; |
Handle<Code> ic = |
- isolate()->stub_cache()->ComputeCallInitialize(arity, NOT_IN_LOOP, mode); |
+ isolate()->stub_cache()->ComputeCallInitialize(arity, mode); |
__ mov(ecx, instr->name()); |
CallCode(ic, mode, instr); |
} |