* dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
	use it.
This commit is contained in:
Jan Kratochvil 2013-03-01 21:18:21 +00:00
parent 341f9135d1
commit c4be516571
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
* dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
use it.
2013-03-01 Pedro Alves <palves@redhat.com>
Use gdb_byte for bytes from the program being debugged.

View File

@ -793,6 +793,7 @@ static struct call_site_chain *
call_site_find_chain_1 (struct gdbarch *gdbarch, CORE_ADDR caller_pc,
CORE_ADDR callee_pc)
{
CORE_ADDR save_callee_pc = callee_pc;
struct obstack addr_obstack;
struct cleanup *back_to_retval, *back_to_workdata;
struct call_site_chain *retval = NULL;
@ -811,7 +812,7 @@ call_site_find_chain_1 (struct gdbarch *gdbarch, CORE_ADDR caller_pc,
callee_pc = get_pc_function_start (callee_pc);
if (callee_pc == 0)
throw_error (NO_ENTRY_VALUE_ERROR, _("Unable to find function for PC %s"),
paddress (gdbarch, callee_pc));
paddress (gdbarch, save_callee_pc));
back_to_retval = make_cleanup (free_current_contents, &retval);