diff options
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 5ae1cb9..cc1fd7f 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -1141,7 +1141,7 @@ parse_exp_in_context (const char **stringptr, CORE_ADDR pc, { lang->la_parser (&ps); } - catch (const gdb_exception_RETURN_MASK_ALL &except) + catch (const gdb_exception &except) { /* If parsing for completion, allow this to succeed; but if no expression elements have been written, then there's nothing @@ -1228,7 +1228,7 @@ parse_expression_for_completion (const char *string, exp = parse_exp_in_context (&string, 0, 0, 0, 0, &subexp, nullptr, &cstate); } - catch (const gdb_exception_RETURN_MASK_ERROR &except) + catch (const gdb_exception_error &except) { /* Nothing, EXP remains NULL. */ } |