diff options
author | Jan Beulich <jbeulich@suse.com> | 2023-03-17 10:05:57 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2023-03-17 10:05:57 +0100 |
commit | dc3f65f030628a779318ac75d7ec572f16d61132 (patch) | |
tree | 14c971f15a6e050a6b0b8c21d6fa3e0f8c1d8f41 /gas/macro.h | |
parent | 6786a0211c9d3c005cd25893ede37e986b69cb49 (diff) | |
download | binutils-dc3f65f030628a779318ac75d7ec572f16d61132.zip binutils-dc3f65f030628a779318ac75d7ec572f16d61132.tar.gz binutils-dc3f65f030628a779318ac75d7ec572f16d61132.tar.bz2 |
gas: use flag_mri directly in macro processing
Again with the removal of gasp about 20 years ago the extra level of
indirection isn't necessary anymore. Drop macro.c's local variable and
use the global flag directly.
Diffstat (limited to 'gas/macro.h')
-rw-r--r-- | gas/macro.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gas/macro.h b/gas/macro.h index 7354826..6386223 100644 --- a/gas/macro.h +++ b/gas/macro.h @@ -83,10 +83,9 @@ extern htab_t macro_hash; extern int buffer_and_nest (const char *, const char *, sb *, size_t (*) (sb *)); -extern void macro_init (int, int); +extern void macro_init (int); extern void macro_end (void); extern void macro_set_alternate (int); -extern void macro_mri_mode (int); extern macro_entry *define_macro (sb *, sb *, size_t (*) (sb *)); extern int check_macro (const char *, sb *, const char **, macro_entry **); extern void delete_macro (const char *); |