diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/ppc-opc.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 9399da7..b5a75f6 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,9 @@ 2012-08-15 Peter Bergner <bergner@vnet.ibm.com> + * ppc-opc.c <RSQ, RTQ>: Use PPC_OPERAND_GPR. + +2012-08-15 Peter Bergner <bergner@vnet.ibm.com> + * ppc-opc.c <xnop, yield, mdoio, mdoom>: New extended mnemonics. 2012-08-14 Maciej W. Rozycki <macro@codesourcery.com> diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c index 911b53b..1b15568 100644 --- a/opcodes/ppc-opc.c +++ b/opcodes/ppc-opc.c @@ -512,11 +512,11 @@ const struct powerpc_operand powerpc_operands[] = #define RD RS { 0x1f, 21, NULL, NULL, PPC_OPERAND_GPR }, - /* The RS and RT fields of the DS form stq instruction, which have - special value restrictions. */ + /* The RS and RT fields of the DS form stq and DQ form lq instructions, + which have special value restrictions. */ #define RSQ RS + 1 #define RTQ RSQ - { 0x1e, 21, NULL, NULL, PPC_OPERAND_GPR_0 }, + { 0x1e, 21, NULL, NULL, PPC_OPERAND_GPR }, /* The RS field of the tlbwe instruction, which is optional. */ #define RSO RSQ + 1 |