summaryrefslogtreecommitdiff
path: root/gdb/mdebugread.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-10-31 04:33:14 +0000
committerAndrew Cagney <cagney@redhat.com>2004-10-31 04:33:14 +0000
commit0d1359950c651cd39d606750844d040df82f8712 (patch)
tree46e24e394e8db00d955de552e4612379518c83d8 /gdb/mdebugread.h
parentc9ec4ec6975fecc15c6caac6ebaa40ec65b8da35 (diff)
downloadgdb-0d1359950c651cd39d606750844d040df82f8712.tar.gz
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.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/mdebugread.h b/gdb/mdebugread.h
index e1a5d1a23cd..25b7beef13e 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 */