diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index a2b1833a5d..47e8c2322d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2002-09-12 Gary Hade + + * ppc-dis.c (powerpc_dialect): Add missing PPC_OPCODE_CLASSIC. + 2002-09-11 Nick Clifton * po/da.po: Updated Danish translation file. diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index cc937db559..0c4cfe474a 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -75,7 +75,8 @@ powerpc_dialect(info) dialect &= ~PPC_OPCODE_ALTIVEC; } else - dialect |= PPC_OPCODE_403 | PPC_OPCODE_601 | PPC_OPCODE_COMMON; + dialect |= (PPC_OPCODE_403 | PPC_OPCODE_601 | PPC_OPCODE_CLASSIC + | PPC_OPCODE_COMMON); if (info->disassembler_options && strcmp (info->disassembler_options, "power4") == 0)