summaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2002-09-12 03:58:37 +0000
committerAlan Modra <amodra@bigpond.net.au>2002-09-12 03:58:37 +0000
commit4d86bbd5768b395e85c53d23ec85e08a93fdade7 (patch)
tree9b87c1451cb2592fbc5b93d5d9705a7c0624ccca /opcodes
parent7070db67dcaf6649058ec75ade7d8c0834f7f58d (diff)
downloadgdb-4d86bbd5768b395e85c53d23ec85e08a93fdade7.tar.gz
* ppc-dis.c (powerpc_dialect): Add missing PPC_OPCODE_CLASSIC.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/ppc-dis.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index a2b1833a5d1..47e8c2322da 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -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.
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c
index cc937db559d..0c4cfe474a8 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)