diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-10-31 04:33:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-10-31 04:33:14 +0000 |
commit | 36b8628e1954d9e640894c948262e27e92101f62 (patch) | |
tree | 10b48fcee3fe6b098dde4d31b02a811691e23e3a /gdb/mdebugread.h | |
parent | 5b12314664a12ac72194c31c1eb431637565cf1d (diff) | |
download | gdb-36b8628e1954d9e640894c948262e27e92101f62.zip gdb-36b8628e1954d9e640894c948262e27e92101f62.tar.gz gdb-36b8628e1954d9e640894c948262e27e92101f62.tar.bz2 |
2004-10-30 Andrew Cagney <cagney@gnu.org>
* mdebugread.h: Include "coff/sym.h" and "coff/symconst.h".
(struct mdebug_extra_func_info): Define.
* config/alpha/tm-alpha.h: Delete same.
* config/mips/tm-mips.h: Delete same.
* mdebugread.c: Delete same.
* Makefile.in: Update dependencies.
* mips-mdebug-tdep.c: Include "mdebugread.h".
Diffstat (limited to 'gdb/mdebugread.h')
-rw-r--r-- | gdb/mdebugread.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/mdebugread.h b/gdb/mdebugread.h index e1a5d1a..25b7bee 100644 --- a/gdb/mdebugread.h +++ b/gdb/mdebugread.h @@ -22,6 +22,18 @@ #ifndef MDEBUGREAD_H #define MDEBUGREAD_H +#include "coff/sym.h" /* Needed for PDR below. */ +#include "coff/symconst.h" + extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR); +/* Specific information about a procedure. Architectures (ab)uses + this to save memory. */ + +struct mdebug_extra_func_info +{ + long numargs; /* number of args to procedure (was iopt) */ + PDR pdr; /* Procedure descriptor record */ +}; + #endif /* MDEBUGREAD_H */ |