diff options
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 179b83e..5c96bf9 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -543,7 +543,7 @@ print_symbol (struct gdbarch *gdbarch, struct symbol *symbol, } else { - if (SYMBOL_CLASS (symbol) == LOC_TYPEDEF) + if (symbol->aclass () == LOC_TYPEDEF) fprintf_filtered (outfile, "typedef "); if (SYMBOL_TYPE (symbol)) { @@ -558,7 +558,7 @@ print_symbol (struct gdbarch *gdbarch, struct symbol *symbol, else fprintf_filtered (outfile, "%s ", symbol->print_name ()); - switch (SYMBOL_CLASS (symbol)) + switch (symbol->aclass ()) { case LOC_CONST: fprintf_filtered (outfile, "const %s (%s)", @@ -654,7 +654,7 @@ print_symbol (struct gdbarch *gdbarch, struct symbol *symbol, default: fprintf_filtered (outfile, "botched symbol class %x", - SYMBOL_CLASS (symbol)); + symbol->aclass ()); break; } } |