| Index: src/mips/builtins-mips.cc
 | 
| diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
 | 
| index fc8e73f8ff9c672de222a13935351b413fc29cfd..ebdb8251ef10d3a8211156e131e8a554290e6abd 100644
 | 
| --- a/src/mips/builtins-mips.cc
 | 
| +++ b/src/mips/builtins-mips.cc
 | 
| @@ -391,13 +391,11 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm,
 | 
|      // the preconditions is not met, the code bails out to the runtime call.
 | 
|      if (FLAG_inline_new) {
 | 
|        Label undo_allocation;
 | 
| -#ifdef ENABLE_DEBUGGER_SUPPORT
 | 
|        ExternalReference debug_step_in_fp =
 | 
|            ExternalReference::debug_step_in_fp_address(isolate);
 | 
|        __ li(a2, Operand(debug_step_in_fp));
 | 
|        __ lw(a2, MemOperand(a2));
 | 
|        __ Branch(&rt_call, ne, a2, Operand(zero_reg));
 | 
| -#endif
 | 
|  
 | 
|        // Load the initial map and verify that it is in fact a map.
 | 
|        // a1: constructor function
 | 
| 
 |