diff options
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 3184594..767c694 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5611,7 +5611,7 @@ remote_target::open_1 (const char *name, int from_tty, int extended_p) already before throwing the exception. */ if (ex.error != TARGET_CLOSE_ERROR) remote_unpush_target (); - throw_exception (ex); + throw; } } @@ -9784,7 +9784,7 @@ remote_target::remote_kill_k () /* Otherwise, something went wrong. We didn't actually kill the target. Just propagate the exception, and let the user or higher layers decide what to do. */ - throw_exception (ex); + throw; } } @@ -13143,7 +13143,7 @@ remote_target::get_trace_status (struct trace_status *ts) exception_fprintf (gdb_stderr, ex, "qTStatus: "); return -1; } - throw_exception (ex); + throw; } result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]); |