* config/tc-m68k.c (mri_chip): Replace current_chip, not augment.

(md_parse_option): Likewise.
This commit is contained in:
Andreas Schwab 2004-06-20 19:33:29 +00:00
parent 66d659b12a
commit 990ae22a1e
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-06-20 Andreas Schwab <schwab@suse.de>
* config/tc-m68k.c (mri_chip): Replace current_chip, not augment.
(md_parse_option): Likewise.
2004-06-17 Jan Beulich <jbeulich@novell.com> 2004-06-17 Jan Beulich <jbeulich@novell.com>
* config/tc-i386.c: Deal with LEX_QM the same way as with LEX_AT. * config/tc-i386.c: Deal with LEX_QM the same way as with LEX_AT.

View file

@ -5471,7 +5471,7 @@ mri_chip ()
else else
current_architecture &= m68881 | m68851; current_architecture &= m68881 | m68851;
current_architecture |= archs[i].arch; current_architecture |= archs[i].arch;
current_chip |= archs[i].chip; current_chip = archs[i].chip;
while (*input_line_pointer == '/') while (*input_line_pointer == '/')
{ {
@ -7264,7 +7264,7 @@ md_parse_option (c, arg)
{ {
current_architecture &= ~m68000up; current_architecture &= ~m68000up;
current_architecture |= arch; current_architecture |= arch;
current_chip |= archs[i].chip; current_chip = archs[i].chip;
} }
else if (arch == m68881) else if (arch == m68881)
{ {