| Index: src/full-codegen/mips/full-codegen-mips.cc
 | 
| diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc
 | 
| index 78bddbd4d5ccf1f3abc25e1a270726bafa670446..338952f5008c59d7bbc991d7556e31b699795295 100644
 | 
| --- a/src/full-codegen/mips/full-codegen-mips.cc
 | 
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
 | 
| @@ -2051,7 +2051,7 @@ void FullCodeGenerator::VisitYield(Yield* expr) {
 | 
|        __ mov(a0, v0);
 | 
|        __ mov(a1, a0);
 | 
|        __ sw(a1, MemOperand(sp, 2 * kPointerSize));
 | 
| -      SetCallPosition(expr, 1);
 | 
| +      SetCallPosition(expr);
 | 
|        __ li(a0, Operand(1));
 | 
|        __ Call(
 | 
|            isolate()->builtins()->Call(ConvertReceiverMode::kNotNullOrUndefined),
 | 
| @@ -2869,7 +2869,7 @@ void FullCodeGenerator::EmitCall(Call* expr, ConvertReceiverMode mode) {
 | 
|  
 | 
|    PrepareForBailoutForId(expr->CallId(), NO_REGISTERS);
 | 
|    // Record source position of the IC call.
 | 
| -  SetCallPosition(expr, arg_count);
 | 
| +  SetCallPosition(expr);
 | 
|    Handle<Code> ic = CodeFactory::CallIC(isolate(), arg_count, mode).code();
 | 
|    __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackICSlot())));
 | 
|    __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
 | 
| @@ -2976,7 +2976,7 @@ void FullCodeGenerator::EmitPossiblyEvalCall(Call* expr) {
 | 
|  
 | 
|    PrepareForBailoutForId(expr->EvalId(), NO_REGISTERS);
 | 
|    // Record source position for debugger.
 | 
| -  SetCallPosition(expr, arg_count);
 | 
| +  SetCallPosition(expr);
 | 
|    __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
 | 
|    __ li(a0, Operand(arg_count));
 | 
|    __ Call(isolate()->builtins()->Call(), RelocInfo::CODE_TARGET);
 | 
| @@ -3008,7 +3008,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
 | 
|  
 | 
|    // Call the construct call builtin that handles allocation and
 | 
|    // constructor invocation.
 | 
| -  SetConstructCallPosition(expr, arg_count);
 | 
| +  SetConstructCallPosition(expr);
 | 
|  
 | 
|    // Load function and argument count into a1 and a0.
 | 
|    __ li(a0, Operand(arg_count));
 | 
| @@ -3044,7 +3044,7 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) {
 | 
|  
 | 
|    // Call the construct call builtin that handles allocation and
 | 
|    // constructor invocation.
 | 
| -  SetConstructCallPosition(expr, arg_count);
 | 
| +  SetConstructCallPosition(expr);
 | 
|  
 | 
|    // Load new target into a3.
 | 
|    VisitForAccumulatorValue(super_call_ref->new_target_var());
 | 
| @@ -3794,7 +3794,7 @@ void FullCodeGenerator::EmitDefaultConstructorCallSuper(CallRuntime* expr) {
 | 
|  
 | 
|    // Call the construct call builtin that handles allocation and
 | 
|    // constructor invocation.
 | 
| -  SetConstructCallPosition(expr, 0);
 | 
| +  SetConstructCallPosition(expr);
 | 
|  
 | 
|    // Load new target into a3.
 | 
|    __ lw(a3, MemOperand(sp, 1 * kPointerSize));
 | 
| @@ -4168,7 +4168,7 @@ void FullCodeGenerator::EmitCallJSRuntimeFunction(CallRuntime* expr) {
 | 
|    ZoneList<Expression*>* args = expr->arguments();
 | 
|    int arg_count = args->length();
 | 
|  
 | 
| -  SetCallPosition(expr, arg_count);
 | 
| +  SetCallPosition(expr);
 | 
|    __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
 | 
|    __ li(a0, Operand(arg_count));
 | 
|    __ Call(isolate()->builtins()->Call(ConvertReceiverMode::kNullOrUndefined),
 | 
| 
 |