diff options
author | Tom Tromey <tom@tromey.com> | 2017-08-13 10:37:13 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-06 15:49:30 -0600 |
commit | eae49211e13efa075d57ab354ea4207666eadc96 (patch) | |
tree | 6cbf8e62f73a076d795c0fb3aacd84487037cd9a /gdb/c-exp.y | |
parent | 73b9be8b5301c4ac056e10c38a47414867ee892a (diff) | |
download | gdb-eae49211e13efa075d57ab354ea4207666eadc96.zip gdb-eae49211e13efa075d57ab354ea4207666eadc96.tar.gz gdb-eae49211e13efa075d57ab354ea4207666eadc96.tar.bz2 |
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/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index bcc3e12..43af80c 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -3232,6 +3232,7 @@ c_parse (struct parser_state *par_state) struct cleanup *back_to; /* Setting up the parser state. */ + scoped_restore pstate_restore = make_scoped_restore (&pstate); gdb_assert (par_state != NULL); pstate = par_state; @@ -3239,7 +3240,6 @@ c_parse (struct parser_state *par_state) assuming they'll be run here (below). */ back_to = make_cleanup (free_current_contents, &expression_macro_scope); - make_cleanup_clear_parser_state (&pstate); /* Set up the scope for macro expansion. */ expression_macro_scope = NULL; |