diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-01-27 21:50:32 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-02-06 16:03:46 -0500 |
commit | 6c9c307c67043b55a209af402246404d89f992c9 (patch) | |
tree | 20a8edd6e245153957a63a702f8f2eef122867c6 /gdb/symmisc.c | |
parent | 66d7f48f8045adf266046df7ceb84161d5678cfa (diff) | |
download | gdb-6c9c307c67043b55a209af402246404d89f992c9.zip gdb-6c9c307c67043b55a209af402246404d89f992c9.tar.gz gdb-6c9c307c67043b55a209af402246404d89f992c9.tar.bz2 |
gdb: remove SYMBOL_DOMAIN macro
Add a getter and a setter for a symbol's domain. Remove the
corresponding macro and adjust all callers.
Change-Id: I54465b50ac89739c663859a726aef8cdc6e4b8f3
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 5c96bf9..9bba067 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -508,7 +508,7 @@ print_symbol (struct gdbarch *gdbarch, struct symbol *symbol, section = NULL; print_spaces_filtered (depth, outfile); - if (SYMBOL_DOMAIN (symbol) == LABEL_DOMAIN) + if (symbol->domain () == LABEL_DOMAIN) { fprintf_filtered (outfile, "label %s at ", symbol->print_name ()); fputs_filtered (paddress (gdbarch, SYMBOL_VALUE_ADDRESS (symbol)), @@ -521,7 +521,7 @@ print_symbol (struct gdbarch *gdbarch, struct symbol *symbol, return; } - if (SYMBOL_DOMAIN (symbol) == STRUCT_DOMAIN) + if (symbol->domain () == STRUCT_DOMAIN) { if (SYMBOL_TYPE (symbol)->name ()) { |