diff options
author | Nick Clifton <nickc@redhat.com> | 2000-01-28 01:06:37 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-01-28 01:06:37 +0000 |
commit | fad6fcbb0080ab85b3c911b5b8b59852b7a5bfc7 (patch) | |
tree | 7e6819127cafce8caa11e89b464ec24d20a5a894 /bfd/ChangeLog | |
parent | 58efb6c0fdeb4fa7ed1aace3bd1fa5068e5fcc9a (diff) | |
download | gdb-fad6fcbb0080ab85b3c911b5b8b59852b7a5bfc7.zip gdb-fad6fcbb0080ab85b3c911b5b8b59852b7a5bfc7.tar.gz gdb-fad6fcbb0080ab85b3c911b5b8b59852b7a5bfc7.tar.bz2 |
Apply patch from Thomas de Lellis to allow nm to distinguish between weak
function symbols and weak data symbols.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9d7c9f6..c2e7498 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,23 @@ -2000-01-27 Thomas de Lellis <tdel@wrs.com> +2000-01-27 Thomas de Lellis <tdel@windriver.com> + + * syms.c (bfd_decode_symclass) + Two new class characters were added - 'V' and 'v'. The + meaning of 'W' is now restricted to just weak non-object + symbols. This allows differentiation between, for example, + weak functions vs weak objects. nm for example now dumps: + 'W' = weak global + 'w' = weak unresolved + 'V' = weak global object + 'v' = weak unresolved object + + (bfd_is_undefined_symclass): New function. Return true if the + given symbol class represents and undefined/unresolved symbol. + + (bfd_symbol_info): Use bfd_is_undefined_symclass to check for + unresolved symbols. + * bfd-in2.h: Add prototype for bfd_is_undefined_symbol(). + * elf32-arm.h (elf32_arm_get_symbol_type): If a symbol has the STT_ARM_16BIT flag set, but it is not attached to a data object return STT_ARM_16BIT so that it will be treated as code by the |