| Index: src/s390/builtins-s390.cc
|
| diff --git a/src/s390/builtins-s390.cc b/src/s390/builtins-s390.cc
|
| index 99520db106a20ad120e72b683b257033c1fd29cb..59b3932b21e53b1e43f6181071bb8e7fdda4a591 100644
|
| --- a/src/s390/builtins-s390.cc
|
| +++ b/src/s390/builtins-s390.cc
|
| @@ -1927,15 +1927,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());
|
| - __ mov(scratch1, Operand(debug_is_active));
|
| - __ LoadlB(scratch1, MemOperand(scratch1));
|
| - __ CmpP(scratch1, Operand::Zero());
|
| - __ bne(&done);
|
| -
|
| // Drop possible interpreter handler/stub frame.
|
| {
|
| Label no_interpreter_frame;
|
| @@ -1982,7 +1973,6 @@ void PrepareForTailCall(MacroAssembler* masm, Register args_reg,
|
| ParameterCount callee_args_count(args_reg);
|
| __ PrepareForTailCall(callee_args_count, caller_args_count_reg, scratch2,
|
| scratch3);
|
| - __ bind(&done);
|
| }
|
| } // namespace
|
|
|
|
|