diff options
author | Jan Beulich <jbeulich@suse.com> | 2023-03-17 10:06:18 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2023-03-17 10:06:18 +0100 |
commit | 1250cd639016e5567ba8214acf8bf81e8a3ce2db (patch) | |
tree | a64dd97a7c88e61e9f0dc8b5c550604fd23d100d /gas/as.h | |
parent | dc3f65f030628a779318ac75d7ec572f16d61132 (diff) | |
download | gdb-1250cd639016e5567ba8214acf8bf81e8a3ce2db.zip gdb-1250cd639016e5567ba8214acf8bf81e8a3ce2db.tar.gz gdb-1250cd639016e5567ba8214acf8bf81e8a3ce2db.tar.bz2 |
gas: expose flag_macro_alternate globally
Yet again with the removal of gasp about 20 years ago this extra level
of indirection isn't necessary anymore either. Drop macro.c's local
variable and make as.c's global.
While doing the conversion, switch the variable to "bool".
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -305,6 +305,9 @@ COMMON int flag_keep_locals; /* -L */ /* True if we are assembling in MRI mode. */ COMMON int flag_mri; +/* True if alternate macro mode is in effect. */ +COMMON bool flag_macro_alternate; + /* Should the data section be made read-only and appended to the text section? */ COMMON unsigned char flag_readonly_data_in_text; /* -R */ |