From 95e172a508fc510294b7be6b5327f5db9e11d1a1 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Thu, 7 Nov 2002 23:43:50 +0000 Subject: [PATCH] 2002-11-07 Aldy Hernandez * ppc-opc.c (EVUIMM_4): Change bit size to 32. (EVUIMM_2): Same. --- opcodes/ChangeLog | 5 +++++ opcodes/ppc-opc.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 275c3bb..136b3f8 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-11-07 Aldy Hernandez + + * ppc-opc.c (EVUIMM_4): Change bit size to 32. + (EVUIMM_2): Same. + 2002-11-07 Klee Dienes * Makefile.am (ia64-asmtab.c): Update to use the new '--srcdir' 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 -- 2.7.4