aboutsummaryrefslogtreecommitdiff
path: root/gdb/objfiles.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2022-01-28 16:18:09 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2022-04-27 22:05:03 -0400
commit24d74bb5df30de096f0271d33ab4f17434cf2c49 (patch)
treeed9b5030af46d970fde9b7793680325936f320dc /gdb/objfiles.c
parentf135fe728e2d0a6168a8445a50a6d63547c4db2f (diff)
downloadgdb-24d74bb5df30de096f0271d33ab4f17434cf2c49.zip
gdb-24d74bb5df30de096f0271d33ab4f17434cf2c49.tar.gz
gdb-24d74bb5df30de096f0271d33ab4f17434cf2c49.tar.bz2
gdb: remove BLOCK_MULTIDICT macro
Replace with equivalent methods. Change-Id: If9a239c511a664f2a59fecb6d1cd579881b23dc2
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r--gdb/objfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c
index e664bcd..a709d94 100644
--- a/gdb/objfiles.c
+++ b/gdb/objfiles.c
@@ -689,7 +689,7 @@ objfile_relocate1 (struct objfile *objfile,
/* We only want to iterate over the local symbols, not any
symbols in included symtabs. */
- ALL_DICT_SYMBOLS (BLOCK_MULTIDICT (b), miter, sym)
+ ALL_DICT_SYMBOLS (b->multidict (), miter, sym)
{
relocate_one_symbol (sym, objfile, delta);
}