when removing single-step breakpoints.
+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
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)
else
{
remove_single_step_breakpoints ();
- write_pc (next_pc);
}
return 1;
}