diff options
Diffstat (limited to 'gdb/compile/compile-c-symbols.c')
-rw-r--r-- | gdb/compile/compile-c-symbols.c | 6 |
1 files changed, 3 insertions, 3 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 ()); } |