diff options
author | Chia-Hao Lo <fcamel@gmail.com> | 2017-03-10 16:29:58 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-03-10 16:29:58 +0000 |
commit | 7b5d48229b7faa16f69e87fb269f17db0291d89f (patch) | |
tree | 8d6f6f4968408c7ced578d092d3a2a805751f1ba /binutils/objdump.c | |
parent | 8b1e5da10ab58d2aa5eb84bf27de511294f061ef (diff) | |
download | gdb-7b5d48229b7faa16f69e87fb269f17db0291d89f.zip gdb-7b5d48229b7faa16f69e87fb269f17db0291d89f.tar.gz gdb-7b5d48229b7faa16f69e87fb269f17db0291d89f.tar.bz2 |
Make objdump's --wide command line option affect its output of DWARF debug information.
PR binutils/21235
* objdump.c (main): Set do_wide with --wide.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index 4609858..46b4417 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -3766,7 +3766,7 @@ main (int argc, char **argv) } break; case 'w': - wide_output = TRUE; + do_wide = wide_output = TRUE; break; case OPTION_ADJUST_VMA: adjust_section_vma = parse_vma (optarg, "--adjust-vma"); |