diff options
author | Alan Modra <amodra@gmail.com> | 2020-07-07 09:27:17 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-07-07 18:26:33 +0930 |
commit | 8af7926f455328bfc34456f6765c0cb1801e758e (patch) | |
tree | ced75399a6fc61d514b13ce8eed8bd6063e065a7 /bfd/ChangeLog | |
parent | 3bde5ad1a60ef773aa11bb4618a58ec7fd3172c1 (diff) | |
download | gdb-8af7926f455328bfc34456f6765c0cb1801e758e.zip gdb-8af7926f455328bfc34456f6765c0cb1801e758e.tar.gz gdb-8af7926f455328bfc34456f6765c0cb1801e758e.tar.bz2 |
XCOFF C_HIDEXT and C_AIX_WEAKEXT classification
If C_HIDEXT and C_AIX_WEAKEXT symbols aren't handled as globals by
coff_classify_symbol then we run into "warning: .. local symbol `some
garbage name' has no section". These are of course both global
symbols, but C_HIDEXT is like a local in some respects and returning
COFF_SYMBOL_LOCAL for C_HIDEXT keeps nm output looking the same.
Fixes these fails on rs6000-aix5.1:
-FAIL: weakref tests, relocations
-FAIL: weakref tests, global syms
-FAIL: weakref tests, strong undefined syms
-FAIL: weakref tests, weak undefined syms
* coffcode.h (coff_classify_symbol): Handle C_HIDEXT and
C_AIX_WEAKEXT.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 02413eb..057bc05 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2020-07-07 Alan Modra <amodra@gmail.com> + + * coffcode.h (coff_classify_symbol): Handle C_HIDEXT and + C_AIX_WEAKEXT. + 2020-07-06 Nick Clifton <nickc@redhat.com> * po/pt.po: Updated Portuguese translation. |