diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2025-04-02 12:36:08 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2025-04-02 12:39:11 -0400 |
commit | 2ff990fb367c9f625e893ce1718f5b9f9ca0b54c (patch) | |
tree | 5e861357090caa2ef203177eeb281e1dd66ba858 /gdb | |
parent | 1137625d46f3840dd7cb7f8519ec9dcba0acd53e (diff) | |
download | binutils-2ff990fb367c9f625e893ce1718f5b9f9ca0b54c.zip binutils-2ff990fb367c9f625e893ce1718f5b9f9ca0b54c.tar.gz binutils-2ff990fb367c9f625e893ce1718f5b9f9ca0b54c.tar.bz2 |
gdb: remove unused includes in dbxread.c
Remove includes reported as unused by clangd.
Change-Id: I12e5cf254d211f42f3cfdab90d1f42a5986e53a3
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/dbxread.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 86e59ab..9e2e572 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -31,36 +31,18 @@ for real. dbx_psymtab_to_symtab() is the function that does this */ -#include "event-top.h" -#include "gdbsupport/gdb_obstack.h" #include <sys/stat.h> #include "symtab.h" -#include "breakpoint.h" #include "target.h" -#include "gdbcore.h" #include "libaout.h" -#include "filenames.h" #include "objfiles.h" -#include "buildsym-legacy.h" #include "stabsread.h" #include "gdb-stabs.h" -#include "demangle.h" -#include "complaints.h" -#include "cp-abi.h" #include "cp-support.h" -#include "c-lang.h" -#include "psymtab.h" -#include "block.h" -#include "aout/aout64.h" -#include "aout/stab_gnu.h" - + /* Required for the following registry. */ #include "gdb-stabs.h" - - - - /* Local function prototypes. */ static void dbx_symfile_init (struct objfile *); |