| Index: src/x87/builtins-x87.cc
|
| diff --git a/src/x87/builtins-x87.cc b/src/x87/builtins-x87.cc
|
| index f4924ea9a0ec57754577dbc2fa0aa130088b4c74..82d8c983b71062373104716fc48c0d0dac874850 100644
|
| --- a/src/x87/builtins-x87.cc
|
| +++ b/src/x87/builtins-x87.cc
|
| @@ -1912,14 +1912,6 @@ void PrepareForTailCall(MacroAssembler* masm, Register args_reg,
|
| DCHECK(!AreAliased(args_reg, scratch1, scratch2, scratch3));
|
| Comment cmnt(masm, "[ PrepareForTailCall");
|
|
|
| - // Prepare for tail call only if the debugger is not active.
|
| - Label done;
|
| - ExternalReference debug_is_active =
|
| - ExternalReference::debug_is_active_address(masm->isolate());
|
| - __ movzx_b(scratch1, Operand::StaticVariable(debug_is_active));
|
| - __ cmp(scratch1, Immediate(0));
|
| - __ j(not_equal, &done, Label::kNear);
|
| -
|
| // Drop possible interpreter handler/stub frame.
|
| {
|
| Label no_interpreter_frame;
|
| @@ -1960,7 +1952,6 @@ void PrepareForTailCall(MacroAssembler* masm, Register args_reg,
|
| ParameterCount callee_args_count(args_reg);
|
| __ PrepareForTailCall(callee_args_count, caller_args_count_reg, scratch2,
|
| scratch3, ReturnAddressState::kOnStack, 0);
|
| - __ bind(&done);
|
| }
|
| } // namespace
|
|
|
|
|