2002-11-15 Andrew Cagney <cagney@redhat.com>

* x86-64-linux-nat.c (i386_sse_regnum_p): New function.  Copy from
	i386-tdep.c.
This commit is contained in:
Andrew Cagney 2002-11-16 00:53:23 +00:00
parent ddeb4f2231
commit a6b063af0f
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-11-15 Andrew Cagney <cagney@redhat.com>
* x86-64-linux-nat.c (i386_sse_regnum_p): New function. Copy from
i386-tdep.c.
2002-11-15 Andrew Cagney <cagney@redhat.com>
* frame.h (sigtramp_saved_pc): Delete declaration.

View file

@ -456,6 +456,17 @@ static struct core_fns linux_elf_core_fns = {
#define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
#endif
/* SSE register? */
/* FIXME: cagney/2002-11-15: Once the i386 and x86-64 are integrated,
this will go. */
int
i386_sse_regnum_p (int regnum)
{
return (regnum < NUM_REGS
&& (XMM0_REGNUM <= (regnum) && (regnum) < MXCSR_REGNUM));
}
/* Return the address of register REGNUM. BLOCKEND is the value of
u.u_ar0, which should point to the registers. */
CORE_ADDR