diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/objdump.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 85b2da300e..5c0492c075 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2012-04-11 Ryan Mansfield <rmansfield@qnx.com> + + * objdump.c (dump_bfd): If defaulting to dwarf call + dwarf_select_sections_all to enable displays. + 2012-04-06 Roland McGrath <mcgrathr@google.com> * configure.in (AC_CHECK_HEADERS): Add locale.h. diff --git a/binutils/objdump.c b/binutils/objdump.c index f55b79d645..02f312d70e 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -3230,6 +3230,7 @@ dump_bfd (bfd *abfd) info in the file, try DWARF instead. */ else if (! dump_dwarf_section_info) { + dwarf_select_sections_all (); dump_dwarf (abfd); } } |