From 0348fd79d4c32243d91e8a55f20f408a9b4ec20d Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" Date: Tue, 25 Apr 2017 11:49:37 +0100 Subject: [PATCH] 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'. --- opcodes/ChangeLog | 5 +++++ opcodes/mips-dis.c | 3 +++ 2 files changed, 8 insertions(+) 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"));