diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-21 22:26:24 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-02-06 16:03:46 -0500 |
commit | 66d7f48f8045adf266046df7ceb84161d5678cfa (patch) | |
tree | 473af71237afd358293f506901cdb13372d8dd72 /gdb/compile | |
parent | d1eebf9a6f02786eb0d5f6b961b8d692d23e77b1 (diff) | |
download | binutils-66d7f48f8045adf266046df7ceb84161d5678cfa.zip binutils-66d7f48f8045adf266046df7ceb84161d5678cfa.tar.gz binutils-66d7f48f8045adf266046df7ceb84161d5678cfa.tar.bz2 |
gdb: remove SYMBOL_CLASS macro, add getter
Change-Id: I83211d5a47efc0564386e5b5ea4a29c00b1fd46a
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-c-symbols.c | 8 | ||||
-rw-r--r-- | gdb/compile/compile-cplus-symbols.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/gdb/compile/compile-c-symbols.c b/gdb/compile/compile-c-symbols.c index 96a7b78..8602480 100644 --- a/gdb/compile/compile-c-symbols.c +++ b/gdb/compile/compile-c-symbols.c @@ -62,7 +62,7 @@ convert_one_symbol (compile_c_instance *context, context->error_symbol_once (sym.symbol); - if (SYMBOL_CLASS (sym.symbol) == LOC_LABEL) + if (sym.symbol->aclass () == LOC_LABEL) sym_type = 0; else sym_type = context->convert_type (SYMBOL_TYPE (sym.symbol)); @@ -80,7 +80,7 @@ convert_one_symbol (compile_c_instance *context, CORE_ADDR addr = 0; gdb::unique_xmalloc_ptr<char> symbol_name; - switch (SYMBOL_CLASS (sym.symbol)) + switch (sym.symbol->aclass ()) { case LOC_TYPEDEF: kind = GCC_C_SYMBOL_TYPEDEF; @@ -398,7 +398,7 @@ gcc_symbol_address (void *datum, struct gcc_c_context *gcc_context, /* We only need global functions here. */ sym = lookup_symbol (identifier, NULL, VAR_DOMAIN, NULL).symbol; - if (sym != NULL && SYMBOL_CLASS (sym) == LOC_BLOCK) + if (sym != NULL && sym->aclass () == LOC_BLOCK) { if (compile_debug) fprintf_unfiltered (gdb_stdlog, @@ -577,7 +577,7 @@ generate_c_for_for_one_variable (compile_instance *compiler, } else { - switch (SYMBOL_CLASS (sym)) + switch (sym->aclass ()) { case LOC_REGISTER: case LOC_ARG: diff --git a/gdb/compile/compile-cplus-symbols.c b/gdb/compile/compile-cplus-symbols.c index 7d26535..de7afca 100644 --- a/gdb/compile/compile-cplus-symbols.c +++ b/gdb/compile/compile-cplus-symbols.c @@ -53,7 +53,7 @@ convert_one_symbol (compile_cplus_instance *instance, instance->error_symbol_once (sym.symbol); - if (SYMBOL_CLASS (sym.symbol) == LOC_LABEL) + if (sym.symbol->aclass () == LOC_LABEL) sym_type = 0; else sym_type = instance->convert_type (SYMBOL_TYPE (sym.symbol)); @@ -70,7 +70,7 @@ convert_one_symbol (compile_cplus_instance *instance, std::string name; gdb::unique_xmalloc_ptr<char> symbol_name; - switch (SYMBOL_CLASS (sym.symbol)) + switch (sym.symbol->aclass ()) { case LOC_TYPEDEF: if (SYMBOL_TYPE (sym.symbol)->code () == TYPE_CODE_TYPEDEF) @@ -435,7 +435,7 @@ gcc_cplus_symbol_address (void *datum, struct gcc_cp_context *gcc_context, struct symbol *sym = lookup_symbol (identifier, nullptr, VAR_DOMAIN, nullptr).symbol; - if (sym != nullptr && SYMBOL_CLASS (sym) == LOC_BLOCK) + if (sym != nullptr && sym->aclass () == LOC_BLOCK) { if (compile_debug) fprintf_unfiltered (gdb_stdlog, |