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/read.c | |
parent | 6786a0211c9d3c005cd25893ede37e986b69cb49 (diff) | |
download | gdb-dc3f65f030628a779318ac75d7ec572f16d61132.zip gdb-dc3f65f030628a779318ac75d7ec572f16d61132.tar.gz gdb-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/read.c')
-rw-r--r-- | gas/read.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -2784,7 +2784,6 @@ s_mri (int ignore ATTRIBUTE_UNUSED) #ifdef TC_M68K flag_m68k_mri = 1; #endif - macro_mri_mode (1); } else { @@ -2792,7 +2791,6 @@ s_mri (int ignore ATTRIBUTE_UNUSED) #ifdef TC_M68K flag_m68k_mri = 0; #endif - macro_mri_mode (0); } /* Operator precedence changes in m68k MRI mode, so we need to |