diff options
Diffstat (limited to 'binutils/nm.c')
-rw-r--r-- | binutils/nm.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/binutils/nm.c b/binutils/nm.c index 7ef5d61..a5d5631 100644 --- a/binutils/nm.c +++ b/binutils/nm.c @@ -801,10 +801,7 @@ filter_symbols (bfd *abfd, bool is_dynamic, void *minisyms, if (sym == NULL) continue; - if (sym->name != NULL - && sym->name[0] == '_' - && sym->name[1] == '_' - && strcmp (sym->name + (sym->name[2] == '_'), "__gnu_lto_slim") == 0 + if (bfd_lto_slim_symbol_p (abfd, sym->name) && report_plugin_err) { report_plugin_err = false; |