diff options
author | Alan Modra <amodra@gmail.com> | 2023-01-19 09:40:20 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-01-19 18:40:30 +1030 |
commit | 75c2efc6f19fe454413aa70d2c37e543f04a67e1 (patch) | |
tree | e6e1bfb47275a094aaf5aeb67c06e4f2d94bfdff /gas | |
parent | 8344ebca2505103c18aa2a1bfb8d200624caf4e6 (diff) | |
download | gdb-75c2efc6f19fe454413aa70d2c37e543f04a67e1.zip gdb-75c2efc6f19fe454413aa70d2c37e543f04a67e1.tar.gz gdb-75c2efc6f19fe454413aa70d2c37e543f04a67e1.tar.bz2 |
Reinitialise macro_nest
* input-scrub.c (input_scrub_begin): Init macro_nest.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/input-scrub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/input-scrub.c b/gas/input-scrub.c index c753243..d3da840 100644 --- a/gas/input-scrub.c +++ b/gas/input-scrub.c @@ -220,6 +220,7 @@ input_scrub_begin (void) physical_input_file = NULL; /* No file read yet. */ next_saved_file = NULL; /* At EOF, don't pop to any other file */ + macro_nest = 0; input_scrub_reinit (); do_scrub_begin (flag_m68k_mri); } |