diff options
author | Pedro Alves <palves@redhat.com> | 2015-03-07 14:50:05 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-03-07 15:19:57 +0000 |
commit | 6c63c96a22d216fb5d51c5d93646066d29e08ea1 (patch) | |
tree | 310e31afd2f492535ae37445861bc007473180dd /gdb/breakpoint.c | |
parent | 492d29ea1c9a8b2c7d5193908119a4e27c045687 (diff) | |
download | gdb-6c63c96a22d216fb5d51c5d93646066d29e08ea1.zip gdb-6c63c96a22d216fb5d51c5d93646066d29e08ea1.tar.gz gdb-6c63c96a22d216fb5d51c5d93646066d29e08ea1.tar.bz2 |
more making TRY/CATCH callers look more like real C++ try/catch blocks
All these were caught by actually making TRY/CATCH use try/catch
behind the scenes, which then resulted in the build failing (on x86_64
Fedora 20) because there was code between the try and catch blocks.
gdb/ChangeLog:
2015-03-07 Pedro Alves <palves@redhat.com>
* breakpoint.c (save_breakpoints): Adjust to avoid code between
TRY and CATCH.
* gdbtypes.c (safe_parse_type): Remove empty line.
(types_deeply_equal):
* guile/scm-frame.c (gdbscm_frame_name):
* linux-thread-db.c (find_new_threads_once):
* python/py-breakpoint.c (bppy_get_commands):
* record-btrace.c (record_btrace_insert_breakpoint)
(record_btrace_remove_breakpoint, record_btrace_start_replaying)
(record_btrace_start_replaying): Adjust to avoid code between TRY
and CATCH.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 0e59638..923523e 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -15926,6 +15926,7 @@ save_breakpoints (char *filename, int from_tty, if (tp->type != bp_dprintf && tp->commands) { + struct gdb_exception exception; fprintf_unfiltered (fp, " commands\n"); @@ -15934,14 +15935,14 @@ save_breakpoints (char *filename, int from_tty, { print_command_lines (current_uiout, tp->commands->commands, 2); } - ui_out_redirect (current_uiout, NULL); - CATCH (ex, RETURN_MASK_ALL) { + ui_out_redirect (current_uiout, NULL); throw_exception (ex); } END_CATCH + ui_out_redirect (current_uiout, NULL); fprintf_unfiltered (fp, " end\n"); } |