This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fixed disassembler data/addr options note on man page


(resending since was not attached in previous message)

This patch fixed a notice message disassembler options section of the
man page, which currently reads:

[...]
"addr64"
"addr32"
"addr16"
"data32"
"data16"
   Specify the default address size and operand size.  These four
options will be overridden if "x86-64", "i386" or "i8086" appear later
in the option string.
[...]

In this notice message, "four" is inaccurate because 5 options are
documented just above.

ChangeLog:


2019-07-06  Christophe Vidal <support@krizalys.com>

* docs/binutils.texi: Fixed notice message disassembler options
section of the man page.
diff --git a/binutils/doc/binutils.texi b/binutils/doc/binutils.texi
index f3c4eaea4f..dac48e7a05 100644
--- a/binutils/doc/binutils.texi
+++ b/binutils/doc/binutils.texi
@@ -2448,7 +2448,7 @@ Note: @code{intel-mnemonic} implies @code{intel} and
 @itemx addr16
 @itemx data32
 @itemx data16
-Specify the default address size and operand size.  These four options
+Specify the default address size and operand size.  These five options
 will be overridden if @code{x86-64}, @code{i386} or @code{i8086}
 appear later in the option string.
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]