Allow CRFS and CRFD operands to accept CR register names
This commit is contained in:
parent
878854263f
commit
0ec499f72c
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-09-20 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* ppc-opc.c (CRFD, CRFS): Add PPC_OPERAND_CR flag so that cr
|
||||
register names are accepted.
|
||||
|
||||
2002-09-17 Svein E. Seldal <Svein.Seldal@solidas.com>
|
||||
|
||||
* tic4x-dis.c: Add function declarations and ATTRIBUTE_UNUSED.
|
||||
|
|
|
@ -257,11 +257,11 @@ const struct powerpc_operand powerpc_operands[] =
|
|||
|
||||
/* The CRFD field in an X form instruction. */
|
||||
#define CRFD CRB + 1
|
||||
{ 3, 23, 0, 0, 0 },
|
||||
{ 3, 23, 0, 0, PPC_OPERAND_CR },
|
||||
|
||||
/* The CRFS field in an X form instruction. */
|
||||
#define CRFS CRFD + 1
|
||||
{ 3, 0, 0, 0, 0 },
|
||||
{ 3, 0, 0, 0, PPC_OPERAND_CR },
|
||||
|
||||
/* The CT field in an X form instruction. */
|
||||
#define CT CRFS + 1
|
||||
|
|
Loading…
Add table
Reference in a new issue