diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-19 22:25:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-02-06 15:48:18 -0500 |
commit | af39c5c8749757724a0f62dcb51be59cf3ecc678 (patch) | |
tree | a960f6bfd23ad6080061d29dbec58125cc33f106 /gdb/symmisc.c | |
parent | 0d9acb4531cfe336b2b335fbaa1f2ef878a6e4d9 (diff) | |
download | binutils-af39c5c8749757724a0f62dcb51be59cf3ecc678.zip binutils-af39c5c8749757724a0f62dcb51be59cf3ecc678.tar.gz binutils-af39c5c8749757724a0f62dcb51be59cf3ecc678.tar.bz2 |
gdb: remove COMPUNIT_BLOCKVECTOR macro, add getter/setter
Add a getter and a setter for a compunit_symtab's blockvector. Remove
the corresponding macro and adjust all callers.
Change-Id: I99484c6619dcbbea7c5d89c72aa660316ca62f64
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 9c882a4..6e1a4c2 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -787,7 +787,7 @@ maintenance_info_symtabs (const char *regexp, int from_tty) printf_filtered (" blockvector" " ((struct blockvector *) %s)\n", host_address_to_string - (COMPUNIT_BLOCKVECTOR (cust))); + (cust->blockvector ())); printf_filtered (" user" " ((struct compunit_symtab *) %s)\n", cust->user != nullptr @@ -863,7 +863,7 @@ maintenance_check_symtabs (const char *ignore, int from_tty) QUIT; - if (COMPUNIT_BLOCKVECTOR (cust) == NULL) + if (cust->blockvector () == NULL) found_something = 1; /* Add more checks here. */ @@ -879,7 +879,7 @@ maintenance_check_symtabs (const char *ignore, int from_tty) } printf_filtered (" { symtab %s\n", symtab_to_filename_for_display (symtab)); - if (COMPUNIT_BLOCKVECTOR (cust) == NULL) + if (cust->blockvector () == NULL) printf_filtered (" NULL blockvector\n"); printf_filtered (" }\n"); } |