diff options
author | Tom Tromey <tromey@redhat.com> | 2012-03-29 01:55:41 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-03-29 01:55:41 +0000 |
commit | 658c734487ff8b2dfebaca5e95a5cc18049225a9 (patch) | |
tree | 28e164390eba241316495cb28849c8469ba0f39d /binutils | |
parent | 2aaed97917d92e80a00b7fb9d160e2d13f1ae720 (diff) | |
download | gdb-658c734487ff8b2dfebaca5e95a5cc18049225a9.zip gdb-658c734487ff8b2dfebaca5e95a5cc18049225a9.tar.gz gdb-658c734487ff8b2dfebaca5e95a5cc18049225a9.tar.bz2 |
* dwarf.c (display_gdb_index): Handle index version 6.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/dwarf.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 425f926..d229810 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2012-03-28 Tom Tromey <tromey@redhat.com> + + * dwarf.c (display_gdb_index): Handle index version 6. + 2012-03-07 Nick Clifton <nickc@redhat.com> * readelf.c (is_16bit_abs_reloc): Add detection of R_MN10300_16. diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 5ad9b93..def71fb 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -1,5 +1,5 @@ /* dwarf.c -- display DWARF contents of a BFD binary file - Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011 + Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -5551,6 +5551,9 @@ display_gdb_index (struct dwarf_section *section, warn (_("Version 4 does not support case insensitive lookups.\n")); break; case 5: + warn (_("Version 5 does not include inlined functions.\n")); + break; + case 6: break; default: warn (_("Unsupported version %lu.\n"), (unsigned long) version); |