diff options
author | Michal Ludvig <mludvig@suse.cz> | 2003-01-06 14:47:37 +0000 |
---|---|---|
committer | Michal Ludvig <mludvig@suse.cz> | 2003-01-06 14:47:37 +0000 |
commit | b089b3da7575478aa863aa494cce5d5d7d4b68fe (patch) | |
tree | 4b2c1d3091137aa6f73147e4bafd6b39255e8604 /gdb/x86-64-linux-nat.c | |
parent | aff87235b07cfc24bd831f35077c0d2280a4381c (diff) | |
download | gdb-b089b3da7575478aa863aa494cce5d5d7d4b68fe.zip gdb-b089b3da7575478aa863aa494cce5d5d7d4b68fe.tar.gz gdb-b089b3da7575478aa863aa494cce5d5d7d4b68fe.tar.bz2 |
2003-01-06 Michal Ludvig <mludvig@suse.cz>
* x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore
since it is in i386-tdep.c.
Diffstat (limited to 'gdb/x86-64-linux-nat.c')
-rw-r--r-- | gdb/x86-64-linux-nat.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/x86-64-linux-nat.c b/gdb/x86-64-linux-nat.c index 69495b8..78e9c49 100644 --- a/gdb/x86-64-linux-nat.c +++ b/gdb/x86-64-linux-nat.c @@ -456,17 +456,6 @@ 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 |