diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-10 16:23:43 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-10 07:08:09 -0700 |
commit | 0e8f53badb3df16f4104890395d9324a5bcf568d (patch) | |
tree | 9d7b5ce90ee961ff24e4d24bbf3d53cf7f21f349 /gdb/mipsread.c | |
parent | 1910070b298052d7ca8e4024891465824588c1e9 (diff) | |
download | gdb-0e8f53badb3df16f4104890395d9324a5bcf568d.zip gdb-0e8f53badb3df16f4104890395d9324a5bcf568d.tar.gz gdb-0e8f53badb3df16f4104890395d9324a5bcf568d.tar.bz2 |
Move some declarations to mdebugread.h
This moves a couple of mdebugread-related declarations from symfile.h
to mdebugread.h, which seemed more appropriate.
gdb/ChangeLog
2019-01-10 Tom Tromey <tom@tromey.com>
* symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
Don't declare.
* mipsread.c: Include mdebugread.h.
* mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
Declare.
* elfread.c: Include mdebugread.h.
Diffstat (limited to 'gdb/mipsread.c')
-rw-r--r-- | gdb/mipsread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/mipsread.c b/gdb/mipsread.c index 3ee6db7..e54dc5d 100644 --- a/gdb/mipsread.c +++ b/gdb/mipsread.c @@ -28,6 +28,7 @@ #include "symtab.h" #include "objfiles.h" #include "stabsread.h" +#include "mdebugread.h" #include "coff/sym.h" #include "coff/internal.h" |