2009-10-22 Michael Snyder <msnyder@vmware.com>

* infrun.c (keep_going): If insert_breakpoints fails,
	print the reason.
This commit is contained in:
Michael Snyder 2009-10-22 23:10:52 +00:00
parent 5186414052
commit 97bd5475e3
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-10-22 Michael Snyder <msnyder@vmware.com>
* infrun.c (keep_going): If insert_breakpoints fails,
print the reason.
2009-10-22 Paul Pluzhnikov <ppluzhnikov@google.com>
PR gdb/10819

View File

@ -4863,6 +4863,7 @@ keep_going (struct execution_control_state *ecs)
}
if (e.reason < 0)
{
exception_print (gdb_stderr, e);
stop_stepping (ecs);
return;
}