diff options
author | Ben Elliston <bje@au.ibm.com> | 2008-12-04 10:29:16 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2008-12-04 10:29:16 +0000 |
commit | 2f3bb96af7966880e7378a1633f6ffe1ea7a6587 (patch) | |
tree | 38694d4d84e9019a354f8cd8ed8a60b43c8a306f /opcodes/ppc-dis.c | |
parent | 4357ad342fdb2117fbfd6d2904d83b29acd23a78 (diff) | |
download | gdb-2f3bb96af7966880e7378a1633f6ffe1ea7a6587.zip gdb-2f3bb96af7966880e7378a1633f6ffe1ea7a6587.tar.gz gdb-2f3bb96af7966880e7378a1633f6ffe1ea7a6587.tar.bz2 |
opcodes/
* ppc-dis.c (powerpc_init_dialect): Do not set PPC_OPCODE_BOOKE
for -Mbooke.
(print_ppc_disassembler_options): Update usage.
* ppc-opc.c (DE, DES, DEO, DE_MASK): Remove.
(BOOKE64): Remove.
(PPCCHLK64): Likewise.
(powerpc_opcodes): Remove all BOOKE64 instructions.
gas/
* config/tc-ppc.c (parse_cpu): Remove booke64 support. Update
usage strings.
(ppc_setup_opcodes): Likewise, remove booke64 support.
* doc/c-ppc.texi (PowerPC-Opts): Remove -mbooke32 and -mbooke64.
* doc/as.texinfo (Overview): Likewise.
binutils/
* doc/binutils.texi (objdump): Update booke documentation.
* NEWS: Document user-visible changes to command line options.
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index bde4c49..061aa84 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -63,7 +63,7 @@ powerpc_init_dialect (struct disassemble_info *info) dialect |= PPC_OPCODE_PPCPS; else if (info->disassembler_options && strstr (info->disassembler_options, "booke") != NULL) - dialect |= PPC_OPCODE_BOOKE | PPC_OPCODE_BOOKE64; + dialect |= PPC_OPCODE_BOOKE; else if ((info->mach == bfd_mach_ppc_e500mc) || (info->disassembler_options && strstr (info->disassembler_options, "e500mc") != NULL)) @@ -402,7 +402,7 @@ print_ppc_disassembler_options (FILE *stream) The following PPC specific disassembler options are supported for use with\n\ the -M switch:\n"); - fprintf (stream, " booke|booke32|booke64 Disassemble the BookE instructions\n"); + fprintf (stream, " booke Disassemble the BookE instructions\n"); fprintf (stream, " e300 Disassemble the e300 instructions\n"); fprintf (stream, " e500|e500x2 Disassemble the e500 instructions\n"); fprintf (stream, " e500mc Disassemble the e500mc instructions\n"); |