2004-10-31 Andrew Cagney <cagney@gnu.org>
* mdebugread.c (parse_procedure): Wrap use of RA_REGNUM in #ifdef.
This commit is contained in:
parent
0a5e8d987a
commit
9b792b1d38
2 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
2004-10-31 Andrew Cagney <cagney@gnu.org>
|
||||
|
||||
* mdebugread.c (parse_procedure): Wrap use of RA_REGNUM in #ifdef.
|
||||
|
||||
* mips-tdep.c (mips_ignore_helper): Delete.
|
||||
* config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Delete.
|
||||
* infrun.c (handle_inferior_event): Delete #ifdef
|
||||
|
|
|
@ -63,9 +63,6 @@
|
|||
|
||||
#ifndef MDEBUG_EFI_SYMBOL_NAME
|
||||
#define MDEBUG_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
|
||||
#ifndef RA_REGNUM
|
||||
#define RA_REGNUM 0
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "gdb_stat.h"
|
||||
|
@ -1977,7 +1974,11 @@ parse_procedure (PDR *pr, struct symtab *search_symtab,
|
|||
&& strcmp (sh_name, "setjmp") == 0)
|
||||
{
|
||||
complaint (&symfile_complaints, "fixing bad setjmp PDR from libc");
|
||||
#ifdef RA_REGNUM
|
||||
e->pdr.pcreg = RA_REGNUM;
|
||||
#else
|
||||
e->pdr.pcreg = 0;
|
||||
#endif
|
||||
e->pdr.regmask = 0x80000000;
|
||||
e->pdr.regoffset = -4;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue