diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/objdump.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 97f6c12..f040336 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2005-04-17 H.J. Lu <hongjiu.lu@intel.com> + + * objdump.c (dump_section_header): Support SEC_GROUP. + 2005-04-16 Nick Clifton <nickc@redhat.com> * readelf.c (debug_apply_rela_addends): Remove redundant %s from diff --git a/binutils/objdump.c b/binutils/objdump.c index a12d95d..575a141 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -336,6 +336,7 @@ dump_section_header (bfd *abfd, asection *section, if (bfd_get_flavour (abfd) == bfd_target_coff_flavour) PF (SEC_COFF_SHARED, "SHARED"); PF (SEC_THREAD_LOCAL, "THREAD_LOCAL"); + PF (SEC_GROUP, "GROUP"); if ((section->flags & SEC_LINK_ONCE) != 0) { |