diff options
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-c-symbols.c | 6 | ||||
-rw-r--r-- | gdb/compile/compile-cplus-symbols.c | 4 | ||||
-rw-r--r-- | gdb/compile/compile-object-load.c | 2 | ||||
-rw-r--r-- | gdb/compile/compile-object-run.c | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/gdb/compile/compile-c-symbols.c b/gdb/compile/compile-c-symbols.c index 7e76db3..9545caa 100644 --- a/gdb/compile/compile-c-symbols.c +++ b/gdb/compile/compile-c-symbols.c @@ -367,7 +367,7 @@ gcc_convert_symbol (void *datum, } } - catch (const gdb_exception_RETURN_MASK_ALL &e) + catch (const gdb_exception &e) { context->plugin ().error (e.what ()); } @@ -429,7 +429,7 @@ gcc_symbol_address (void *datum, struct gcc_c_context *gcc_context, } } - catch (const gdb_exception_RETURN_MASK_ERROR &e) + catch (const gdb_exception_error &e) { context->plugin ().error (e.what ()); } @@ -598,7 +598,7 @@ generate_c_for_for_one_variable (compile_instance *compiler, } } - catch (const gdb_exception_RETURN_MASK_ERROR &e) + catch (const gdb_exception_error &e) { compiler->insert_symbol_error (sym, e.what ()); } diff --git a/gdb/compile/compile-cplus-symbols.c b/gdb/compile/compile-cplus-symbols.c index 1bb3a6f..98133af 100644 --- a/gdb/compile/compile-cplus-symbols.c +++ b/gdb/compile/compile-cplus-symbols.c @@ -388,7 +388,7 @@ gcc_cplus_convert_symbol (void *datum, } } } - catch (const gdb_exception_RETURN_MASK_ALL &e) + catch (const gdb_exception &e) { /* We can't allow exceptions to escape out of this callback. Safest is to simply emit a gcc error. */ @@ -466,7 +466,7 @@ gcc_cplus_symbol_address (void *datum, struct gcc_cp_context *gcc_context, } } - catch (const gdb_exception_RETURN_MASK_ERROR &e) + catch (const gdb_exception_error &e) { instance->plugin ().error (e.what ()); } diff --git a/gdb/compile/compile-object-load.c b/gdb/compile/compile-object-load.c index 29542e7..4e70205 100644 --- a/gdb/compile/compile-object-load.c +++ b/gdb/compile/compile-object-load.c @@ -54,7 +54,7 @@ munmap_list::~munmap_list () { gdbarch_infcall_munmap (target_gdbarch (), item.addr, item.size); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { /* There's not much the user can do, so just ignore this. */ diff --git a/gdb/compile/compile-object-run.c b/gdb/compile/compile-object-run.c index 1c4dd20..5bad049 100644 --- a/gdb/compile/compile-object-run.c +++ b/gdb/compile/compile-object-run.c @@ -173,7 +173,7 @@ compile_object_run (struct compile_module *module) call_function_by_hand_dummy (func_val, NULL, args, do_module_cleanup, data); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { /* In the case of DTOR_FOUND or in the case of EXECUTED nothing needs to be done. */ |