2000-07-15 H.J. Lu <hjl@gnu.org>

* aoutx.h (translate_to_native_sym_flags): Handle BSF_LOCAL.
This commit is contained in:
H.J. Lu 2000-07-15 18:42:01 +00:00
parent 802db21b61
commit 930d924dd4
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-07-15 H.J. Lu <hjl@gnu.org>
* aoutx.h (translate_to_native_sym_flags): Handle BSF_LOCAL.
2000-07-12 Charles Wilson <cwilson@ece.gatech.edu>
* libbfd.c (bfd_seek): fix 'seek beyond EOF' error when writing

View File

@ -1681,6 +1681,8 @@ translate_to_native_sym_flags (abfd, cache_ptr, sym_pointer)
sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type;
else if ((cache_ptr->flags & BSF_GLOBAL) != 0)
sym_pointer->e_type[0] |= N_EXT;
else if ((cache_ptr->flags & BSF_LOCAL) != 0)
sym_pointer->e_type[0] &= ~N_EXT;
if ((cache_ptr->flags & BSF_CONSTRUCTOR) != 0)
{