diff options
author | Alan Modra <amodra@gmail.com> | 2003-10-11 12:32:18 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-10-11 12:32:18 +0000 |
commit | a7f49d812fee7df00def7a127aa674ab64e97aaf (patch) | |
tree | d70790f17fdce14d6400bfb51c0a4eeab736739c /bfd/bfd-in2.h | |
parent | f6214256ec4714f2f9d4c55725e561d75c303dd1 (diff) | |
download | binutils-a7f49d812fee7df00def7a127aa674ab64e97aaf.zip binutils-a7f49d812fee7df00def7a127aa674ab64e97aaf.tar.gz binutils-a7f49d812fee7df00def7a127aa674ab64e97aaf.tar.bz2 |
* section.c (bfd_get_section_size_before_reloc): Ignore reloc_done.
* bfd-in2.h: Regenerate.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index fcbe98a..034330f 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1421,8 +1421,7 @@ extern const struct symbol_cache_entry * const bfd_com_symbol; extern const struct symbol_cache_entry * const bfd_und_symbol; extern const struct symbol_cache_entry * const bfd_ind_symbol; #define bfd_get_section_size_before_reloc(section) \ - ((section)->reloc_done ? (abort (), (bfd_size_type) 1) \ - : (section)->_raw_size) + ((section)->_raw_size) #define bfd_get_section_size_after_reloc(section) \ ((section)->reloc_done ? (section)->_cooked_size \ : (abort (), (bfd_size_type) 1)) |