* config/rx-parse.y (SUB): Correct subtraction of immediate

pattern.
This commit is contained in:
DJ Delorie 2010-12-18 05:40:46 +00:00
parent 57bf2d7ed8
commit e6a3fb4b5c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-12-18 DJ Delorie <dj@redhat.com>
* config/rx-parse.y (SUB): Correct subtraction of immediate
pattern.
2010-12-16 DJ Delorie <dj@redhat.com>
* config/tc-rx.c (rx_validate_fix_sub): Permit subtraction in more

View File

@ -331,7 +331,7 @@ statement :
{ B2 (0x60, 0); FE ($3, 8, 4); F ($5, 12, 4); }
else
/* This is really an add, but we negate the immediate. */
{ B2 (0x38, 0); F ($5, 8, 4); F ($5, 12, 4); NIMM ($3, 6); } } /* ? */
{ B2 (0x70, 0); F ($5, 8, 4); F ($5, 12, 4); NIMM ($3, 6); } }
| CMP '#' EXPR ',' REG
{ if (rx_uintop ($3, 4))