diff options
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index a3e7695..3944c0f 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -1817,7 +1817,8 @@ handle_inferior_event (struct execution_control_state *ecs) { /* Loading of shared libraries might have changed breakpoint addresses. Make sure new breakpoints are inserted. */ - if (!breakpoints_always_inserted_mode ()) + if (stop_soon == NO_STOP_QUIETLY + && !breakpoints_always_inserted_mode ()) insert_breakpoints (); resume (0, TARGET_SIGNAL_0); prepare_to_wait (ecs); |