diff options
author | Doug Evans <xdje42@gmail.com> | 2014-11-18 09:32:10 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-11-18 09:32:10 -0800 |
commit | 8435453b810d8ab0574e509446003d10d04abfd4 (patch) | |
tree | 81596d7c347ed52caa1edb74412662b1c54f24b1 /gdb/symtab.h | |
parent | ee6f8984bbdbf340816a7f2aebe736f100601b22 (diff) | |
download | gdb-8435453b810d8ab0574e509446003d10d04abfd4.zip gdb-8435453b810d8ab0574e509446003d10d04abfd4.tar.gz gdb-8435453b810d8ab0574e509446003d10d04abfd4.tar.bz2 |
symtab.h (SYMTAB_LINETABLE): Renamed from LINETABLE. All uses updated.
gdb/ChangeLog:
* symtab.h (SYMTAB_LINETABLE): Renamed from LINETABLE. All uses
updated.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index e545506..9a8c404 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -981,7 +981,7 @@ struct symtab }; #define BLOCKVECTOR(symtab) (symtab)->blockvector -#define LINETABLE(symtab) (symtab)->linetable +#define SYMTAB_LINETABLE(symtab) ((symtab)->linetable) #define SYMTAB_OBJFILE(symtab) ((symtab)->objfile) #define SYMTAB_PSPACE(symtab) (SYMTAB_OBJFILE (symtab)->pspace) #define SYMTAB_DIRNAME(symtab) ((symtab)->dirname) |