mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
Simplify global symbol handling
* nm.c (filter_symbols): Simplify global symbol handling.
This commit is contained in:
@ -435,10 +435,10 @@ filter_symbols (bfd *abfd, bfd_boolean is_dynamic, void *minisyms,
|
||||
if (undefined_only)
|
||||
keep = bfd_is_und_section (sym->section);
|
||||
else if (external_only)
|
||||
keep = ((sym->flags & BSF_GLOBAL) != 0
|
||||
|| (sym->flags & BSF_WEAK) != 0
|
||||
/* PR binutls/12753: Unique symbols are global too. */
|
||||
|| (sym->flags & BSF_GNU_UNIQUE) != 0
|
||||
/* PR binutls/12753: Unique symbols are global too. */
|
||||
keep = ((sym->flags & (BSF_GLOBAL
|
||||
| BSF_WEAK
|
||||
| BSF_GNU_UNIQUE)) != 0
|
||||
|| bfd_is_und_section (sym->section)
|
||||
|| bfd_is_com_section (sym->section));
|
||||
else
|
||||
|
Reference in New Issue
Block a user