diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1996-01-23 00:50:24 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1996-01-23 00:50:24 +0000 |
commit | 458bbd1f1e586aa857df7cd61cd7b7fd09b96f98 (patch) | |
tree | 6bef4277f51e7c80740b1ce1d3ecb065eb17b1a9 /binutils/binutils.texi | |
parent | 049f3d4c7525d6f45106db5f3c4b4e16ef03ce95 (diff) | |
download | gdb-458bbd1f1e586aa857df7cd61cd7b7fd09b96f98.zip gdb-458bbd1f1e586aa857df7cd61cd7b7fd09b96f98.tar.gz gdb-458bbd1f1e586aa857df7cd61cd7b7fd09b96f98.tar.bz2 |
Add new option --show-raw-insn.
* objdump.c (show_raw_insn): New global.
(usage): Update.
(long_options): Update.
(disassemble_data): Set disasm_info.flags if --show-raw-insn.
* objdump.c (disassemble_data): Set new arch,mach,endian fields in
disasm_info.
Diffstat (limited to 'binutils/binutils.texi')
-rw-r--r-- | binutils/binutils.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/binutils/binutils.texi b/binutils/binutils.texi index 31df7f1..3b857d2 100644 --- a/binutils/binutils.texi +++ b/binutils/binutils.texi @@ -972,7 +972,8 @@ objdump [ -a | --archive-headers ] [ -s | --full-contents ] [ --stabs ] [ -t | --syms ] [ -T | --dynamic-syms ] [ -x | --all-headers ] [ -w | --wide ] [ --start-address=@var{address} ] - [ --stop-address=@var{address} ] [ --version ] [ --help ] + [ --stop-address=@var{address} ] [ --show-raw-insn ] + [ --version ] [ --help ] @var{objfile}@dots{} @end smallexample @@ -1112,6 +1113,10 @@ Display the full contents of any sections requested. Display source code intermixed with disassembly, if possible. Implies @samp{-d}. +@item --show-raw-insn +When disassembling instructions, print the instruction in hex as well as +in symbolic form. Not all targets handle this correctly yet. + @item --stabs @cindex stab @cindex .stab |