diff options
author | Alan Modra <amodra@gmail.com> | 2002-09-12 03:58:37 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-09-12 03:58:37 +0000 |
commit | 9ec878e36703a7cec6a58fb2a2980ce5ec9cb790 (patch) | |
tree | f47a9c336a757dda88594485bf4bbd0bed52fae5 /opcodes/ppc-dis.c | |
parent | a54ba43fe9719b40edbfa24a6f49443d80da650d (diff) | |
download | gdb-9ec878e36703a7cec6a58fb2a2980ce5ec9cb790.zip gdb-9ec878e36703a7cec6a58fb2a2980ce5ec9cb790.tar.gz gdb-9ec878e36703a7cec6a58fb2a2980ce5ec9cb790.tar.bz2 |
* ppc-dis.c (powerpc_dialect): Add missing PPC_OPCODE_CLASSIC.
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index cc937db..0c4cfe4 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) |