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".
This commit is contained in:
Andrew Cagney
2004-10-31 04:33:14 +00:00
parent 5b12314664
commit 36b8628e19
7 changed files with 26 additions and 43 deletions

View File

@@ -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 */