diff options
author | Tom Tromey <tom@tromey.com> | 2022-10-20 13:54:56 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-12-19 08:05:14 -0700 |
commit | 6829683679ce66f3ff3aa184609afa59ac349637 (patch) | |
tree | 670d4555fc44771aaf950e0f5919343c29cebb71 /gdb/objfiles.c | |
parent | 975249ff4e260453217f4a98b1033b0c7a6e6dc5 (diff) | |
download | gdb-6829683679ce66f3ff3aa184609afa59ac349637.zip gdb-6829683679ce66f3ff3aa184609afa59ac349637.tar.gz gdb-6829683679ce66f3ff3aa184609afa59ac349637.tar.bz2 |
Remove quick_symbol_functions::relocated
quick_symbol_functions::relocated is only needed for psymtabs, and
there it is only needed for Rust. However, because we've switched the
DWARF reader away from psymtabs, this means there's no longer a need
for this method at all.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 09aba0f..ffdb36a 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -667,10 +667,6 @@ objfile_relocate1 (struct objfile *objfile, } } - /* Notify the quick symbol object. */ - for (const auto &iter : objfile->qf) - iter->relocated (); - /* Relocate isolated symbols. */ { struct symbol *iter; |