mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-05 12:53:16 +08:00
* xcoffread.c (xcoff_symfile_read), coffread.c (coff_symfile_read):
Sort symtabs for this objfile only, not for all objfiles.
This commit is contained in:
parent
9c38eb65ac
commit
577e6a8dc5
@ -2079,10 +2079,13 @@ xcoff_symfile_read (objfile, section_offset, mainline)
|
|||||||
free_debugsection ();
|
free_debugsection ();
|
||||||
|
|
||||||
/* Sort symbols alphabetically within each block. */
|
/* Sort symbols alphabetically within each block. */
|
||||||
for (s = objfile -> symtabs; s != NULL; s = s -> next)
|
{
|
||||||
{
|
struct symtab *s;
|
||||||
sort_symtab_syms (s);
|
for (s = objfile -> symtabs; s != NULL; s = s -> next)
|
||||||
}
|
{
|
||||||
|
sort_symtab_syms (s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Install any minimal symbols that have been collected as the current
|
/* Install any minimal symbols that have been collected as the current
|
||||||
minimal symbols for this objfile. */
|
minimal symbols for this objfile. */
|
||||||
|
Loading…
Reference in New Issue
Block a user