* ppc-dis.c (powerpc_dialect): Add missing PPC_OPCODE_CLASSIC.

This commit is contained in:
Alan Modra 2002-09-12 03:58:37 +00:00
parent a54ba43fe9
commit 9ec878e367
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-09-12 Gary Hade <garyhade@us.ibm.com>
* ppc-dis.c (powerpc_dialect): Add missing PPC_OPCODE_CLASSIC.
2002-09-11 Nick Clifton <nickc@redhat.com>
* po/da.po: Updated Danish translation file.

View File

@ -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)