diff options
Diffstat (limited to 'gdb/block.c')
-rw-r--r-- | gdb/block.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/block.c b/gdb/block.c index c0e3e46..38773af 100644 --- a/gdb/block.c +++ b/gdb/block.c @@ -665,7 +665,7 @@ bool best_symbol (struct symbol *a, const domain_enum domain) { return (SYMBOL_DOMAIN (a) == domain - && SYMBOL_CLASS (a) != LOC_UNRESOLVED); + && a->aclass () != LOC_UNRESOLVED); } /* See block.h. */ @@ -685,11 +685,10 @@ better_symbol (struct symbol *a, struct symbol *b, const domain_enum domain) && SYMBOL_DOMAIN (a) != domain) return b; - if (SYMBOL_CLASS (a) != LOC_UNRESOLVED - && SYMBOL_CLASS (b) == LOC_UNRESOLVED) + if (a->aclass () != LOC_UNRESOLVED && b->aclass () == LOC_UNRESOLVED) return a; - if (SYMBOL_CLASS (b) != LOC_UNRESOLVED - && SYMBOL_CLASS (a) == LOC_UNRESOLVED) + + if (b->aclass () != LOC_UNRESOLVED && a->aclass () == LOC_UNRESOLVED) return b; return a; |