diff options
author | Jakub Jelinek <jakub@redhat.com> | 2001-04-14 14:23:31 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2001-04-14 14:23:31 +0000 |
commit | 21288cedc85ee0776c213af751cc4725fc1063f0 (patch) | |
tree | 354be8e6a5d2718973122aa09c71ca2dab57f3ca | |
parent | e9edecad19569e77e3941a3481571b495801adff (diff) | |
download | binutils-redhat-21288cedc85ee0776c213af751cc4725fc1063f0.tar.gz |
* section.c (STD_SECTION): Add entsize.
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/section.c | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index bf137107ae..26e9bd9b9a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2001-04-14 Jakub Jelinek <jakub@redhat.com> + + * section.c (STD_SECTION): Add entsize. + 2001-04-13 H.J. Lu <hjl@gnu.org> * section.c (SEC_MERGE): Define new flag for merging. diff --git a/bfd/section.c b/bfd/section.c index 9918b01262..623e8b697a 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -1,6 +1,6 @@ /* Object file "section" support for the BFD library. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000 + 2000, 2001 Free Software Foundation, Inc. Written by Cygnus Support. @@ -590,11 +590,11 @@ static const asymbol global_syms[] = /* line_filepos, userdata, contents, lineno, lineno_count, */ \ 0, NULL, NULL, NULL, 0, \ \ - /* comdat, kept_section, moving_line_filepos, target_index, */ \ - NULL, NULL, 0, 0, \ + /* entsize, comdat, kept_section, moving_line_filepos, */ \ + 0, NULL, NULL, 0, \ \ - /* used_by_bfd, constructor_chain, owner, */ \ - NULL, NULL, NULL, \ + /* target_index, used_by_bfd, constructor_chain, owner, */ \ + 0, NULL, NULL, NULL, \ \ /* symbol, */ \ (struct symbol_cache_entry *) &global_syms[IDX], \ |