symtab.h (SYMTAB_LINETABLE): Renamed from LINETABLE. All uses updated.
[deliverable/binutils-gdb.git] / gdb / buildsym.c
index d0f0ddcfa27894cfb8aa9619772f433afa4b2f0b..d63b3b98edf76c49c3663b4be024e0fd4321a0dd 100644 (file)
@@ -1232,13 +1232,14 @@ end_symtab_with_blockvector (struct block *static_block,
       if (subfile->line_vector)
        {
          /* Reallocate the line table on the symbol obstack.  */
-         symtab->linetable = (struct linetable *)
+         SYMTAB_LINETABLE (symtab) = (struct linetable *)
            obstack_alloc (&objfile->objfile_obstack, linetablesize);
-         memcpy (symtab->linetable, subfile->line_vector, linetablesize);
+         memcpy (SYMTAB_LINETABLE (symtab), subfile->line_vector,
+                 linetablesize);
        }
       else
        {
-         symtab->linetable = NULL;
+         SYMTAB_LINETABLE (symtab) = NULL;
        }
       symtab->block_line_section = section;
       if (subfile->dirname)
This page took 0.025882 seconds and 4 git commands to generate.