| Index: src/arm/full-codegen-arm.cc
|
| diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc
|
| index e5b25e3eaa1c40d762684491aa36c8866ff281d7..add1fb929f6b6bec8113daa31cb9051255d351cf 100644
|
| --- a/src/arm/full-codegen-arm.cc
|
| +++ b/src/arm/full-codegen-arm.cc
|
| @@ -3006,8 +3006,7 @@ void FullCodeGenerator::EmitCall(Call* expr, CallICState::CallType call_type) {
|
|
|
| // Record source position of the IC call.
|
| SetSourcePosition(expr->position());
|
| - Handle<Code> ic = CallIC::initialize_stub(
|
| - isolate(), arg_count, call_type);
|
| + Handle<Code> ic = CodeFactory::CallIC(isolate(), arg_count, call_type).code();
|
| __ mov(r3, Operand(SmiFromSlot(expr->CallFeedbackSlot())));
|
| __ ldr(r1, MemOperand(sp, (arg_count + 1) * kPointerSize));
|
| // Don't assign a type feedback id to the IC, since type feedback is provided
|
|
|