From: Alan Modra Date: Fri, 1 Aug 2003 03:48:55 +0000 (+0000) Subject: * config/tc-msp430.c (msp430_srcoperand): Extend 'push' bug workaround X-Git-Tag: ezannoni_pie-20030916-branchpoint~547 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2097767332a3b2395da7015d076c33c0bb182d32;p=platform%2Fupstream%2Fbinutils.git * config/tc-msp430.c (msp430_srcoperand): Extend 'push' bug workaround to all arches. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index dd7e3b1..136a4ee 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-08-01 Dmitry Diky + + * config/tc-msp430.c (msp430_srcoperand): Extend 'push' bug workaround + to all arches. + 2003-07-30 J"orn Rennecke * config/tc-sh.c (md_assemble): For branches, check & update diff --git a/gas/config/tc-msp430.c b/gas/config/tc-msp430.c index cb39229..60728ee 100644 --- a/gas/config/tc-msp430.c +++ b/gas/config/tc-msp430.c @@ -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")); */