| Index: src/mips64/builtins-mips64.cc | 
| diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc | 
| index 1a9ef80f4465a6aedc84f2dbf743470feef9f50b..9be75995d067c76afe53bf1df4007ac91c6ef0c0 100644 | 
| --- a/src/mips64/builtins-mips64.cc | 
| +++ b/src/mips64/builtins-mips64.cc | 
| @@ -572,7 +572,8 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, | 
| __ Call(code, RelocInfo::CODE_TARGET); | 
| } else { | 
| ParameterCount actual(a0); | 
| -      __ InvokeFunction(a1, a3, actual, CALL_FUNCTION, NullCallWrapper()); | 
| +      __ InvokeFunction(a1, a3, actual, CALL_FUNCTION, | 
| +                        CheckDebugStepCallWrapper()); | 
| } | 
|  | 
| // Store offset of return address for deoptimizer. | 
| @@ -1692,10 +1693,10 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, | 
|  | 
| __ lw(a2, | 
| FieldMemOperand(a2, SharedFunctionInfo::kFormalParameterCountOffset)); | 
| -  __ ld(t0, FieldMemOperand(a1, JSFunction::kCodeEntryOffset)); | 
| ParameterCount actual(a0); | 
| ParameterCount expected(a2); | 
| -  __ InvokeCode(t0, no_reg, expected, actual, JUMP_FUNCTION, NullCallWrapper()); | 
| +  __ InvokeFunctionCode(a1, no_reg, expected, actual, JUMP_FUNCTION, | 
| +                        CheckDebugStepCallWrapper()); | 
|  | 
| // The function is a "classConstructor", need to raise an exception. | 
| __ bind(&class_constructor); | 
|  |