From: Maciej W. Rozycki Date: Tue, 25 Apr 2017 10:49:37 +0000 (+0100) Subject: MIPS16/opcodes: Add `-M no-aliases' disassembler option help text X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=0348fd79d4c32243d91e8a55f20f408a9b4ec20d;hp=6e3d1f0728d980a384c5aa63ce7f2ff3919c5024;p=deliverable%2Fbinutils-gdb.git MIPS16/opcodes: Add `-M no-aliases' disassembler option help text Complement commit 986e18a5a9fd ("Add a second 'pinfo' member to mips_opcode to extend number of available bits"), , and add a help text for the `-M no-aliases' disassembler option. opcodes/ * mips-dis.c (print_mips_disassembler_options): Add `no-aliases'. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 9bc7a90335..532f82140d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2017-04-25 Maciej W. Rozycki + + * mips-dis.c (print_mips_disassembler_options): Add + `no-aliases'. + 2017-04-25 Maciej W. Rozycki * mips16-opc.c (AL): New macro. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index bb9912e462..4a08d8a4a0 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -2433,6 +2433,9 @@ print_mips_disassembler_options (FILE *stream) The following MIPS specific disassembler options are supported for use\n\ with the -M switch (multiple options should be separated by commas):\n")); + fprintf (stream, _("\n\ + no-aliases Use canonical instruction forms.\n")); + fprintf (stream, _("\n\ msa Recognize MSA instructions.\n"));