* alpha-tdep.c (alpha_software_single_step): Do not call write_pc

when removing single-step breakpoints.
This commit is contained in:
Ulrich Weigand 2007-04-14 16:17:39 +00:00
parent 0cc3409506
commit 06a862851c
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-04-14 Ulrich Weigand <uweigand@de.ibm.com>
* alpha-tdep.c (alpha_software_single_step): Do not call write_pc
when removing single-step breakpoints.
2007-04-14 Vladimir Prus <vladimir@codesourcery.com>
* varobj.h (varobj_set_frozen): New

View File

@ -1521,7 +1521,7 @@ alpha_next_pc (CORE_ADDR pc)
int
alpha_software_single_step (enum target_signal sig, int insert_breakpoints_p)
{
static CORE_ADDR next_pc;
CORE_ADDR next_pc;
CORE_ADDR pc;
if (insert_breakpoints_p)
@ -1534,7 +1534,6 @@ alpha_software_single_step (enum target_signal sig, int insert_breakpoints_p)
else
{
remove_single_step_breakpoints ();
write_pc (next_pc);
}
return 1;
}