Allow CRFS and CRFD operands to accept CR register names

This commit is contained in:
Nick Clifton 2002-09-20 15:44:23 +00:00
parent 878854263f
commit 0ec499f72c
2 changed files with 7 additions and 2 deletions

View file

@ -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.

View file

@ -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