* breakpoint.c (insert_single_step_breakpoint): Make a failure to

insert a single-step breakpoint an error instead of a warning.
* breakpoint.c (remove_single_step_breakpoints): Bail out early if
no breakpoints are inserted.
This commit is contained in:
Mark Kettenis
2006-05-01 16:38:08 +00:00
parent 21f79b33e5
commit 1893a4c08f
2 changed files with 9 additions and 1 deletions

View File

@@ -7717,7 +7717,7 @@ insert_single_step_breakpoint (CORE_ADDR next_pc)
*bpt_p = deprecated_insert_raw_breakpoint (next_pc);
if (*bpt_p == NULL)
warning (_("Could not insert single-step breakpoint at 0x%s"),
error (_("Could not insert single-step breakpoint at 0x%s"),
paddr_nz (next_pc));
}