Browse Source

* ldcref.c (check_nocrossref): Skip symbols with no output

sections.
gdb-4_18-branch
Ian Lance Taylor 30 years ago
parent
commit
6bb21dd356
  1. 2
      ld/ldcref.c

2
ld/ldcref.c

@ -374,6 +374,8 @@ check_nocrossref (h, ignore)
return true;
defsec = hl->u.def.section->output_section;
if (defsec == NULL)
return true;
defsecname = bfd_get_section_name (defsec->owner, defsec);
for (ncrs = nocrossref_list; ncrs != NULL; ncrs = ncrs->next)

Loading…
Cancel
Save