aboutsummaryrefslogtreecommitdiff
path: root/opcodes/ppc-opc.c
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2002-11-07 23:43:50 +0000
committerAldy Hernandez <aldyh@redhat.com>2002-11-07 23:43:50 +0000
commit95e172a508fc510294b7be6b5327f5db9e11d1a1 (patch)
treeb8dce32ce1729624b65608c4cefeaa2a6a26b83e /opcodes/ppc-opc.c
parent0ec30a3604449a69bbf15f319d01918f8d91516f (diff)
downloadfsf-binutils-gdb-95e172a508fc510294b7be6b5327f5db9e11d1a1.zip
fsf-binutils-gdb-95e172a508fc510294b7be6b5327f5db9e11d1a1.tar.gz
fsf-binutils-gdb-95e172a508fc510294b7be6b5327f5db9e11d1a1.tar.bz2
2002-11-07 Aldy Hernandez <aldyh@redhat.com>
* ppc-opc.c (EVUIMM_4): Change bit size to 32. (EVUIMM_2): Same.
Diffstat (limited to 'opcodes/ppc-opc.c')
-rw-r--r--opcodes/ppc-opc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c
index f235405..259423a 100644
--- a/opcodes/ppc-opc.c
+++ b/opcodes/ppc-opc.c
@@ -544,11 +544,11 @@ const struct powerpc_operand powerpc_operands[] =
/* The other UIMM field in a half word EVX form instruction. */
#define EVUIMM_2 EVUIMM + 1
- { 5, 11, insert_ev2, extract_ev2, PPC_OPERAND_PARENS },
+ { 32, 11, insert_ev2, extract_ev2, PPC_OPERAND_PARENS },
/* The other UIMM field in a word EVX form instruction. */
#define EVUIMM_4 EVUIMM_2 + 1
- { 5, 11, insert_ev4, extract_ev4, PPC_OPERAND_PARENS },
+ { 32, 11, insert_ev4, extract_ev4, PPC_OPERAND_PARENS },
/* The other UIMM field in a double EVX form instruction. */
#define EVUIMM_8 EVUIMM_4 + 1