diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-01 12:14:21 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-01-08 18:40:21 -0700 |
commit | 245703b3ce7522ddbf9290267129878ad8c6c725 (patch) | |
tree | be4999d3fa2bd825cc0e2f3cc31bee3c04779bf3 /gdb/objfile-flags.h | |
parent | aecbdf5f34bcb781bd3191bfbe0a32a129391e93 (diff) | |
download | binutils-245703b3ce7522ddbf9290267129878ad8c6c725.zip binutils-245703b3ce7522ddbf9290267129878ad8c6c725.tar.gz binutils-245703b3ce7522ddbf9290267129878ad8c6c725.tar.bz2 |
Remove two quick_symbol_functions methods
quick_symbol_functions::read_partial_symbols is no longer implemented,
so both it and quick_symbol_functions::can_lazily_read_symbols can be
removed. This allows for other functions to be removed as well.
Note that SYMFILE_NO_READ is now pretty much dead. I haven't removed
it here -- but could if that's desirable. I tend to think that this
functionality would be better implemented in the core; but whenever I
dive into the non-DWARF readers it is pretty depressing.
Diffstat (limited to 'gdb/objfile-flags.h')
-rw-r--r-- | gdb/objfile-flags.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/objfile-flags.h b/gdb/objfile-flags.h index 9dee2ee..74aea1a 100644 --- a/gdb/objfile-flags.h +++ b/gdb/objfile-flags.h @@ -44,10 +44,6 @@ enum objfile_flag : unsigned add-symbol-file command. */ OBJF_USERLOADED = 1 << 2, /* User loaded */ - /* Set if we have tried to read partial symtabs for this objfile. - This is used to allow lazy reading of partial symtabs. */ - OBJF_PSYMTABS_READ = 1 << 3, - /* Set if this is the main symbol file (as opposed to symbol file for dynamically loaded code). */ OBJF_MAINLINE = 1 << 4, |