mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 00:59:15 +08:00
opcodes/
* ppc-opc.c (L): Make this field not optional. include/opcode/ * ppc.h (PPC_OPERAND_OPTIONAL): Fix comment.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2004-09-09 Segher Boessenkool <segher@kernel.crashing.org>
|
||||||
|
|
||||||
|
* ppc.h (PPC_OPERAND_OPTIONAL): Fix comment.
|
||||||
|
|
||||||
2004-08-24 Dmitry Diky <diwil@spec.ru>
|
2004-08-24 Dmitry Diky <diwil@spec.ru>
|
||||||
|
|
||||||
* msp430.h (msp430_opc): Add new instructions.
|
* msp430.h (msp430_opc): Add new instructions.
|
||||||
|
@ -249,7 +249,7 @@ extern const struct powerpc_operand powerpc_operands[];
|
|||||||
#define PPC_OPERAND_ABSOLUTE (01000)
|
#define PPC_OPERAND_ABSOLUTE (01000)
|
||||||
|
|
||||||
/* This operand is optional, and is zero if omitted. This is used for
|
/* This operand is optional, and is zero if omitted. This is used for
|
||||||
the optional BF and L fields in the comparison instructions. The
|
example, in the optional BF field in the comparison instructions. The
|
||||||
assembler must count the number of operands remaining on the line,
|
assembler must count the number of operands remaining on the line,
|
||||||
and the number of operands remaining for the opcode, and decide
|
and the number of operands remaining for the opcode, and decide
|
||||||
whether this operand is present or not. The disassembler should
|
whether this operand is present or not. The disassembler should
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2004-09-09 Segher Boessenkool <segher@kernel.crashing.org>
|
||||||
|
|
||||||
|
* ppc-opc.c (L): Make this field not optional.
|
||||||
|
|
||||||
2004-09-03 Tomer Levi <Tomer.Levi@nsc.com>
|
2004-09-03 Tomer Levi <Tomer.Levi@nsc.com>
|
||||||
|
|
||||||
* opc-crx.c: Rename 'popma' to 'popa', remove 'pushma'.
|
* opc-crx.c: Rename 'popma' to 'popa', remove 'pushma'.
|
||||||
|
@ -300,7 +300,7 @@ const struct powerpc_operand powerpc_operands[] =
|
|||||||
|
|
||||||
/* The L field in a D or X form instruction. */
|
/* The L field in a D or X form instruction. */
|
||||||
#define L FXM4 + 1
|
#define L FXM4 + 1
|
||||||
{ 1, 21, 0, 0, PPC_OPERAND_OPTIONAL },
|
{ 1, 21, 0, 0, 0 },
|
||||||
|
|
||||||
/* The LEV field in a POWER SC form instruction. */
|
/* The LEV field in a POWER SC form instruction. */
|
||||||
#define LEV L + 1
|
#define LEV L + 1
|
||||||
|
Reference in New Issue
Block a user