diff options
author | Tom Tromey <tromey@adacore.com> | 2023-04-28 08:08:54 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-05-23 13:57:54 -0600 |
commit | e360af5af8e0ecb3eb62cf3970e9d1df0289c781 (patch) | |
tree | 9820e02a855fa78f0fe361d7a69993c84a608ae1 /gdb/f-exp.y | |
parent | 78655a10f7718f2596c0ae2a9a401e2597c5041f (diff) | |
download | gdb-e360af5af8e0ecb3eb62cf3970e9d1df0289c781.zip gdb-e360af5af8e0ecb3eb62cf3970e9d1df0289c781.tar.gz gdb-e360af5af8e0ecb3eb62cf3970e9d1df0289c781.tar.bz2 |
Add PARSER_DEBUG flag
This adds a new PARSER_DEBUG constant and changes the parser code to
use it. This lets us make the 'parser_debug' global 'static'.
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r-- | gdb/f-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y index 7fb1a90..c0afebc 100644 --- a/gdb/f-exp.y +++ b/gdb/f-exp.y @@ -1697,7 +1697,7 @@ f_language::parser (struct parser_state *par_state) const /* Setting up the parser state. */ scoped_restore pstate_restore = make_scoped_restore (&pstate); scoped_restore restore_yydebug = make_scoped_restore (&yydebug, - parser_debug); + par_state->debug); gdb_assert (par_state != NULL); pstate = par_state; last_was_structop = false; |