mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +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 ();
|
||||
|
||||
/* Sort symbols alphabetically within each block. */
|
||||
for (s = objfile -> symtabs; s != NULL; s = s -> next)
|
||||
{
|
||||
sort_symtab_syms (s);
|
||||
}
|
||||
{
|
||||
struct symtab *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
|
||||
minimal symbols for this objfile. */
|
||||
|
Loading…
Reference in New Issue
Block a user