* serial.h (SERIAL_SET_TTY_STATE): Comment return value.
[deliverable/binutils-gdb.git] / gdb / dstread.c
index 6fbd2feb3bdf3045a2e4ce2fe96ede3be6142d34..23e46eda19761ba889a1503f96f0bcba64ff1d52 100644 (file)
@@ -349,7 +349,13 @@ dst_symfile_read (objfile, section_offsets, mainline)
 
   /* Sort symbols alphabetically within each block.  */
 
-  sort_all_symtab_syms ();
+  {
+    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. */
This page took 0.023193 seconds and 4 git commands to generate.