diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-03-15 20:37:45 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-03-15 20:37:45 +0000 |
commit | 5c59269f50bd672ce7f342a7cb1dcdf3fb60029f (patch) | |
tree | e573ff2ca3d0cf9b1274b352e6cec14535ba4811 /binutils/binutils.texi | |
parent | 5e67a3c60143b67632a6385e4f4df3336c39eb89 (diff) | |
download | gdb-5c59269f50bd672ce7f342a7cb1dcdf3fb60029f.zip gdb-5c59269f50bd672ce7f342a7cb1dcdf3fb60029f.tar.gz gdb-5c59269f50bd672ce7f342a7cb1dcdf3fb60029f.tar.bz2 |
* objdump.c (usage): Mention --no-show-raw-insn.
(long_options): Add "no-show-raw-insn".
(disassemble_bytes): Handle --no-show-raw-insn.
* binutils.texi, objdump.1: Document --no-show-raw-insn.
Diffstat (limited to 'binutils/binutils.texi')
-rw-r--r-- | binutils/binutils.texi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/binutils/binutils.texi b/binutils/binutils.texi index fac0bb0..b4efc88 100644 --- a/binutils/binutils.texi +++ b/binutils/binutils.texi @@ -1050,7 +1050,7 @@ objdump [ -a | --archive-headers ] [ -t | --syms ] [ -T | --dynamic-syms ] [ -x | --all-headers ] [ -w | --wide ] [ --start-address=@var{address} ] [ --stop-address=@var{address} ] - [ --prefix-addresses] [ --show-raw-insn ] + [ --prefix-addresses] [ --[no-]show-raw-insn ] [ --adjust-vma=@var{offset} ] [ --version ] [ --help ] @var{objfile}@dots{} @@ -1226,6 +1226,10 @@ When disassembling instructions, print the instruction in hex as well as in symbolic form. This is the default except when @code{--prefix-addresses} is used. +@item --no-show-raw-insn +When disassembling instructions, do not print the instruction bytes. +This is the default when @code{--prefix-addresses} is used. + @item --stabs @cindex stab @cindex .stab |