From: Nick Clifton Date: Wed, 4 Sep 2002 12:37:30 +0000 (+0000) Subject: Do not insert non-BookE32 instructions into the hash table if the target cpu X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c4dc0f270c37cc43d32bed24cd61ce197f24a79e;p=pf3gnuchains%2Fpf3gnuchains3x.git Do not insert non-BookE32 instructions into the hash table if the target cpu is the BookE32. (case 107575) --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 9f0d0d193b..f1c202822d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,9 @@ 2002-09-04 Nick Clifton + * ppc-opc.c (extsw, extsw.): Do not allow for the BookE32. + +2002-09-04 Nick Clifton + * disassemble.c (disassembler_usage): Add invocation of print_ppc_disassembler_options. * ppc-dis.c (print_ppc_disassembler_options): New function. diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c index ff7e8d7628..1a8627f7eb 100644 --- a/opcodes/ppc-opc.c +++ b/opcodes/ppc-opc.c @@ -4238,8 +4238,8 @@ const struct powerpc_opcode powerpc_opcodes[] = { { "stfiwx", X(31,983), X_MASK, PPC, { FRS, RA, RB } }, -{ "extsw", XRC(31,986,0), XRB_MASK, PPC, { RA, RS } }, -{ "extsw.", XRC(31,986,1), XRB_MASK, PPC, { RA, RS } }, +{ "extsw", XRC(31,986,0), XRB_MASK, PPC | BOOKE64, { RA, RS } }, +{ "extsw.", XRC(31,986,1), XRB_MASK, PPC | BOOKE64, { RA, RS } }, { "icread", X(31,998), XRT_MASK, PPC403, { RA, RB } },