From 3af67ca97524961cfbf971613187248a95c3cf5d Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Sun, 31 Oct 2004 02:59:21 +0000 Subject: 2004-10-30 Andrew Cagney * config/alpha/tm-alpha.h (MDEBUG_EFI_SYMBOL_NAME): Rename MIPS_EFI_SYMBOL_NAME. (mips_extra_func_info_t, mips_extra_func_info): Delete. (struct mdebug_extra_func_info): Replace struct alpha_extra_func_info and alpha_extra_func_info_t. * config/mips/tm-mips.h (MDEBUG_EFI_SYMBOL_NAME): Rename MIPS_EFI_SYMBOL_NAME. (struct mdebug_extra_func_info): Replace struct alpha_extra_func_info and alpha_extra_func_info_t. * objfiles.c, mips-tdep.c, mips-mdebug-tdep.c: Update. * mdebugread.c, alpha-mdebug-tdep.c: --- gdb/config/mips/tm-mips.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'gdb/config/mips/tm-mips.h') diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index 40f2fd1d278..fb73bf56866 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -45,22 +45,21 @@ extern int mips_step_skips_delay (CORE_ADDR); #define RA_REGNUM 31 /* Contains return address value */ -/* Special symbol found in blocks associated with routines. We can hang - mips_extra_func_info_t's off of this. */ +/* Special symbol found in blocks associated with routines. We can + hang mdebug_extra_func_info's off of this. */ -#define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__" +#define MDEBUG_EFI_SYMBOL_NAME "__GDB_EFI_INFO__" extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR); /* Specific information about a procedure. This overlays the MIPS's PDR records, mipsread.c (ab)uses this to save memory */ -typedef struct mips_extra_func_info - { - long numargs; /* number of args to procedure (was iopt) */ - PDR pdr; /* Procedure descriptor record */ - } - *mips_extra_func_info_t; +struct mdebug_extra_func_info +{ + long numargs; /* number of args to procedure (was iopt) */ + PDR pdr; /* Procedure descriptor record */ +}; /* Functions for dealing with MIPS16 call and return stubs. */ #define DEPRECATED_IGNORE_HELPER_CALL(pc) mips_ignore_helper (pc) -- cgit v1.2.1