* config/tc-msp430.c (msp430_srcoperand): Extend 'push' bug workaround

to all arches.
This commit is contained in:
Alan Modra 2003-08-01 03:48:55 +00:00
parent d9efd8a93f
commit 2097767332
2 changed files with 7 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2003-08-01 Dmitry Diky <diwil@mail.ru>
* config/tc-msp430.c (msp430_srcoperand): Extend 'push' bug workaround
to all arches.
2003-07-30 J"orn Rennecke <joern.rennecke@superh.com>
* config/tc-sh.c (md_assemble): For branches, check & update

View File

@ -981,11 +981,7 @@ msp430_srcoperand (op, l, bin, imm_op)
else if (x == 4)
{
#ifdef PUSH_1X_WORKAROUND
if (bin == 0x1200
&& (msp430_mcu->isa == MSP430_ISA_11
|| msp430_mcu->isa == MSP430_ISA_12
|| msp430_mcu->isa == MSP430_ISA_13
|| msp430_mcu->isa == MSP430_ISA_14))
if (bin == 0x1200)
{
/* Remove warning as confusing.
as_warn(_("Hardware push bug workaround")); */
@ -1002,11 +998,7 @@ msp430_srcoperand (op, l, bin, imm_op)
else if (x == 8)
{
#ifdef PUSH_1X_WORKAROUND
if (bin == 0x1200
&& (msp430_mcu->isa == MSP430_ISA_11
|| msp430_mcu->isa == MSP430_ISA_12
|| msp430_mcu->isa == MSP430_ISA_13
|| msp430_mcu->isa == MSP430_ISA_14))
if (bin == 0x1200)
{
/* Remove warning as confusing.
as_warn(_("Hardware push bug workaround")); */