Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 789b646f2f340d16b96358473684aa8601b0640a..290154ebce43c8af39c4694dae8b5aee99051f9f 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -2297,7 +2297,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr, |
__ bind(&stub_call); |
__ mov(eax, ecx); |
BinaryOpICStub stub(isolate(), op, mode); |
- CallIC(stub.GetCode(isolate()), expr->BinaryOperationFeedbackId()); |
+ CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ jmp(&done, Label::kNear); |
@@ -2381,7 +2381,7 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, |
__ pop(edx); |
BinaryOpICStub stub(isolate(), op, mode); |
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code. |
- CallIC(stub.GetCode(isolate()), expr->BinaryOperationFeedbackId()); |
+ CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
context()->Plug(eax); |
} |
@@ -2889,7 +2889,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) { |
__ mov(edx, Immediate(Smi::FromInt(expr->CallNewFeedbackSlot()))); |
CallConstructStub stub(isolate(), RECORD_CALL_TARGET); |
- __ call(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL); |
+ __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL); |
PrepareForBailoutForId(expr->ReturnId(), TOS_REG); |
context()->Plug(eax); |
} |
@@ -4426,7 +4426,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
__ mov(edx, eax); |
__ mov(eax, Immediate(Smi::FromInt(1))); |
BinaryOpICStub stub(isolate(), expr->binary_op(), NO_OVERWRITE); |
- CallIC(stub.GetCode(isolate()), expr->CountBinOpFeedbackId()); |
+ CallIC(stub.GetCode(), expr->CountBinOpFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ bind(&done); |