summaryrefslogtreecommitdiff
path: root/opcodes
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
commite1553dcea4f21b80a081e75740003972505bcf52 (patch)
treebbd6c41803d98d9be8740f20a55172fb43b8b39b /opcodes
parent154ebc4c562a1f57738630fd6eaf1957a05e9698 (diff)
downloadbinutils-redhat-e1553dcea4f21b80a081e75740003972505bcf52.tar.gz
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')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/ppc-opc.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 275c3bb451..136b3f8595 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-07 Aldy Hernandez <aldyh@redhat.com>
+
+ * ppc-opc.c (EVUIMM_4): Change bit size to 32.
+ (EVUIMM_2): Same.
+
2002-11-07 Klee Dienes <kdienes@apple.com>
* Makefile.am (ia64-asmtab.c): Update to use the new '--srcdir'
diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c
index f235405a34..259423aa1a 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