diff options
author | Catherine Moore <clm@redhat.com> | 1998-07-31 21:15:51 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 1998-07-31 21:15:51 +0000 |
commit | 0a8aeb55e4ce10420dfc7400bd347bade14c197c (patch) | |
tree | a3665e12eb175d29b637d34a5bf68ee6bbb04ffc /gas/read.c | |
parent | 6e723af99a0e337385285981b9510db5a60f4898 (diff) | |
download | gdb-0a8aeb55e4ce10420dfc7400bd347bade14c197c.zip gdb-0a8aeb55e4ce10420dfc7400bd347bade14c197c.tar.gz gdb-0a8aeb55e4ce10420dfc7400bd347bade14c197c.tar.bz2 |
* configure.in: (arm-*-elf): Handle.
(thumb-*-elf): Handle.
* configure: Regenerate.
* read.c (stringer): Fix typo in comment.
* write.c (fixup_segment): Don't add symbol value to addend if
TC_ARM and OBJ_ELF.
* config/tc-arm.c (md_section_align): Don't align dwarf debug
sections.
(tc_gen_reloc): Always set the reloc addend to fixp->fx_offset
for OBJ_ELF.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2299,13 +2299,19 @@ s_mri (ignore) #ifdef TC_M68K flag_m68k_mri = 1; #endif + macro_mri_mode (1); } else { flag_mri = 0; flag_m68k_mri = 0; + macro_mri_mode (0); } + /* Operator precedence changes in m68k MRI mode, so we need to + update the operator rankings. */ + expr_set_precedence (); + #ifdef MRI_MODE_CHANGE if (on != old_flag) MRI_MODE_CHANGE (on); @@ -4390,7 +4396,7 @@ stringer (append_zero) /* Worker to do .ascii etc statements. */ /* * The following awkward logic is to parse ZERO or more strings, - * comma seperated. Recall a string expression includes spaces + * comma separated. Recall a string expression includes spaces * before the opening '\"' and spaces after the closing '\"'. * We fake a leading ',' if there is (supposed to be) * a 1st, expression. We keep demanding expressions for each |