From 9ec878e36703a7cec6a58fb2a2980ce5ec9cb790 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 12 Sep 2002 03:58:37 +0000 Subject: [PATCH] * ppc-dis.c (powerpc_dialect): Add missing PPC_OPCODE_CLASSIC. --- opcodes/ChangeLog | 4 ++++ opcodes/ppc-dis.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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)