Index: src/ppc/builtins-ppc.cc |
diff --git a/src/ppc/builtins-ppc.cc b/src/ppc/builtins-ppc.cc |
index 03dc3c3ff0b3785c24e1c88cdaf7db469b2ca2c9..9ad0eb23c28c623ff10c93da8634658b72e17a7d 100644 |
--- a/src/ppc/builtins-ppc.cc |
+++ b/src/ppc/builtins-ppc.cc |
@@ -1966,15 +1966,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)); |
- __ lbz(scratch1, MemOperand(scratch1)); |
- __ cmpi(scratch1, Operand::Zero()); |
- __ bne(&done); |
- |
// Drop possible interpreter handler/stub frame. |
{ |
Label no_interpreter_frame; |
@@ -2022,7 +2013,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 |