summaryrefslogtreecommitdiff
path: root/gdb/f-exp.y
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-08-13 10:37:13 -0600
committerTom Tromey <tom@tromey.com>2017-09-06 15:49:30 -0600
commiteae49211e13efa075d57ab354ea4207666eadc96 (patch)
tree6cbf8e62f73a076d795c0fb3aacd84487037cd9a /gdb/f-exp.y
parent73b9be8b5301c4ac056e10c38a47414867ee892a (diff)
Remove make_cleanup_clear_parser_state
This removes make_cleanup_clear_parser_state in favor of scoped_restore. 2017-09-05 Tom Tromey <tom@tromey.com> * utils.c (do_clear_parser_state): Remove. (make_cleanup_clear_parser_state): Remove. * p-exp.y (pascal_parse): Use scoped_restore. * m2-exp.y (m2_parse): Use scoped_restore. * f-exp.y (f_parse): Use scoped_restore. * d-exp.y (d_parse): Use scoped_restore. * c-exp.y (c_parse): Use scoped_restore. * ada-exp.y (ada_parse): Use scoped_restore. * utils.h (make_cleanup_clear_parser_state): Remove.
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r--gdb/f-exp.y8
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y
index 7e9e234bf6..8dcc811b68 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