From 8435453b810d8ab0574e509446003d10d04abfd4 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 18 Nov 2014 09:32:10 -0800 Subject: symtab.h (SYMTAB_LINETABLE): Renamed from LINETABLE. All uses updated. gdb/ChangeLog: * symtab.h (SYMTAB_LINETABLE): Renamed from LINETABLE. All uses updated. --- gdb/symmisc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gdb/symmisc.c') diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 323ebd5..42e43fd 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -126,7 +126,7 @@ print_objfile_statistics (void) ALL_OBJFILE_SYMTABS (objfile, s) { i++; - if (s->linetable != NULL) + if (SYMTAB_LINETABLE (s) != NULL) linetables++; if (s->primary == 1) blockvectors++; @@ -308,7 +308,7 @@ dump_symtab_1 (struct objfile *objfile, struct symtab *symtab, language_str (symtab->language)); /* First print the line table. */ - l = LINETABLE (symtab); + l = SYMTAB_LINETABLE (symtab); if (l) { fprintf_filtered (outfile, "\nLine table:\n\n"); @@ -763,7 +763,8 @@ maintenance_info_symtabs (char *regexp, int from_tty) symtab->primary ? " (primary)" : ""); printf_filtered (" " "linetable ((struct linetable *) %s)\n", - host_address_to_string (symtab->linetable)); + host_address_to_string + (SYMTAB_LINETABLE (symtab))); printf_filtered (" debugformat %s\n", symtab->debugformat); printf_filtered (" }\n"); -- cgit v1.1