diff options
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r-- | gdb/f-exp.y | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y index 7e9e234..8dcc811 100644 --- a/gdb/f-exp.y +++ b/gdb/f-exp.y @@ -1206,16 +1206,12 @@ yylex (void) int f_parse (struct parser_state *par_state) { - int result; - struct cleanup *c = make_cleanup_clear_parser_state (&pstate); - /* Setting up the parser state. */ + scoped_restore pstate_restore = make_scoped_restore (&pstate); gdb_assert (par_state != NULL); pstate = par_state; - result = yyparse (); - do_cleanups (c); - return result; + return yyparse (); } void |