gas/
PR 4448 * config/tc-ppc.c (ppc_insert_operand): Don't increase min for PPC_OPERAND_PLUS1. include/opcode/ * ppc.h (PPC_OPERAND_PLUS1): Update comment.
This commit is contained in:
parent
0d063f63c5
commit
3896c469d2
4 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-05-02 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
PR 4448
|
||||||
|
* config/tc-ppc.c (ppc_insert_operand): Don't increase min for
|
||||||
|
PPC_OPERAND_PLUS1.
|
||||||
|
|
||||||
2007-05-01 H.J. Lu <hongjiu.lu@intel.com>
|
2007-05-01 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* config/tc-i386.c (match_template): Check suffix for crc32 in
|
* config/tc-i386.c (match_template): Check suffix for crc32 in
|
||||||
|
|
|
@ -1544,10 +1544,7 @@ ppc_insert_operand (insn, operand, val, file, line)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((operand->flags & PPC_OPERAND_PLUS1) != 0)
|
if ((operand->flags & PPC_OPERAND_PLUS1) != 0)
|
||||||
{
|
max++;
|
||||||
max++;
|
|
||||||
min++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((operand->flags & PPC_OPERAND_NEGATIVE) != 0)
|
if ((operand->flags & PPC_OPERAND_NEGATIVE) != 0)
|
||||||
test = - val;
|
test = - val;
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2007-05-02 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* ppc.h (PPC_OPERAND_PLUS1): Update comment.
|
||||||
|
|
||||||
2007-04-23 Nathan Sidwell <nathan@codesourcery.com>
|
2007-04-23 Nathan Sidwell <nathan@codesourcery.com>
|
||||||
|
|
||||||
* m68k.h (mcfisa_c): New.
|
* m68k.h (mcfisa_c): New.
|
||||||
|
|
|
@ -294,7 +294,7 @@ extern const unsigned int num_powerpc_operands;
|
||||||
/* This operand is for the DQ field in a DQ form instruction. */
|
/* This operand is for the DQ field in a DQ form instruction. */
|
||||||
#define PPC_OPERAND_DQ (0x8000)
|
#define PPC_OPERAND_DQ (0x8000)
|
||||||
|
|
||||||
/* Valid range of operand is 1..n rather than 0..n-1. */
|
/* Valid range of operand is 0..n rather than 0..n-1. */
|
||||||
#define PPC_OPERAND_PLUS1 (0x10000)
|
#define PPC_OPERAND_PLUS1 (0x10000)
|
||||||
|
|
||||||
/* The POWER and PowerPC assemblers use a few macros. We keep them
|
/* The POWER and PowerPC assemblers use a few macros. We keep them
|
||||||
|
|
Loading…
Add table
Reference in a new issue