mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 01:42:21 +08:00
* tm-{irix3,mips,nindy960,pn,symmetry,vx960}.h: Move
REGISTER_U_ADDR to corresponding xm- file. Sugg. by Peter Schauer.
This commit is contained in:
@ -20,7 +20,17 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
|
||||
#define HAVE_TERMIO
|
||||
|
||||
#define U_REGS_OFFSET 0
|
||||
|
||||
#include "xm-bigmips.h"
|
||||
|
||||
/* Override register locations in upage for SGI machines */
|
||||
#undef REGISTER_U_ADDR
|
||||
#define REGISTER_U_ADDR(addr, blockend, regno) \
|
||||
if (regno < PC_REGNUM) \
|
||||
addr = regno; \
|
||||
else \
|
||||
addr = regno + NSIG_HNDLRS; /* Skip over signal handlers */
|
||||
|
||||
/* Don't need special routines for the SGI -- we can use infptrace.c */
|
||||
#undef FETCH_INFERIOR_REGISTERS
|
||||
|
Reference in New Issue
Block a user