diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-17 18:24:15 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-17 18:24:15 +0000 |
commit | afb18d0f3dcc99608b41b805fea3526653cee1e3 (patch) | |
tree | aba70ff4892c8c745208b8a29a297fbd0de92f10 /gdb/procfs.c | |
parent | a698f53eb944ed6e48c6f14987ae99d8de99ab1a (diff) | |
download | gdb-afb18d0f3dcc99608b41b805fea3526653cee1e3.zip gdb-afb18d0f3dcc99608b41b805fea3526653cee1e3.tar.gz gdb-afb18d0f3dcc99608b41b805fea3526653cee1e3.tar.bz2 |
2004-01-17 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
* gdbarch.h, gdbarch.c: Re-generate.
* procfs.c (procfs_fetch_registers): Delete reference to
DEPRECATED_NPC_REGNUM.
(procfs_store_registers): Ditto.
* regcache.c (generic_target_write_pc): Simplify.
* lynx-nat.c: Delete #ifdef SPARC code. Not used.
Index: doc/ChangeLog
2004-01-17 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
documentation on DEPRECATED_NPC_REGNUM.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 72ad202..090cf73 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -3703,11 +3703,10 @@ procfs_fetch_registers (int regno) if (FP0_REGNUM >= 0) /* need floating point? */ { - if ((regno >= 0 && regno < FP0_REGNUM) || - regno == PC_REGNUM || - (DEPRECATED_NPC_REGNUM >= 0 && regno == DEPRECATED_NPC_REGNUM) || - regno == DEPRECATED_FP_REGNUM || - regno == SP_REGNUM) + if ((regno >= 0 && regno < FP0_REGNUM) + || regno == PC_REGNUM + || regno == DEPRECATED_FP_REGNUM + || regno == SP_REGNUM) return; /* not a floating point register */ if ((fpregs = proc_get_fpregs (pi)) == NULL) @@ -3777,11 +3776,10 @@ procfs_store_registers (int regno) if (FP0_REGNUM >= 0) /* need floating point? */ { - if ((regno >= 0 && regno < FP0_REGNUM) || - regno == PC_REGNUM || - (DEPRECATED_NPC_REGNUM >= 0 && regno == DEPRECATED_NPC_REGNUM) || - regno == DEPRECATED_FP_REGNUM || - regno == SP_REGNUM) + if ((regno >= 0 && regno < FP0_REGNUM) + || regno == PC_REGNUM + || regno == DEPRECATED_FP_REGNUM + || regno == SP_REGNUM) return; /* not a floating point register */ if ((fpregs = proc_get_fpregs (pi)) == NULL) |