2016-04-18  Yao Qi  <yao.qi@linaro.org>

	Revert:
	2016-04-15  Yao Qi  <yao.qi@linaro.org>

	* arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
	PC is far from the end of function.
This commit is contained in:
Yao Qi 2016-04-18 08:50:09 +01:00
parent 5c3c7aa89b
commit 5947319ef3
2 changed files with 8 additions and 8 deletions

View File

@ -1,3 +1,11 @@
2016-04-18 Yao Qi <yao.qi@linaro.org>
Revert:
2016-04-15 Yao Qi <yao.qi@linaro.org>
* arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
PC is far from the end of function.
2016-04-16 Pedro Alves <palves@redhat.com>
* ada-exp.y (yydefred): Define as ada_yydefred.

View File

@ -3135,14 +3135,6 @@ thumb_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
return 0;
if (func_end - pc > 4 * 4)
{
/* There shouldn't be more than four instructions in epilogue.
If PC is still 16 bytes away from FUNC_END, it isn't in
epilogue. */
return 0;
}
/* The epilogue is a sequence of instructions along the following lines:
- add stack frame size to SP or FP