diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-03-27 15:29:45 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-03-27 15:29:45 +0000 |
commit | 378bfd1b7a2a1afc6553da2ae148a3908cf6d147 (patch) | |
tree | bc9527fd134df416332ccaf41d56604ec600256b /gdb/doc | |
parent | 56056df7357ad45c335b21b9432ac7133b8db34e (diff) | |
download | gdb-378bfd1b7a2a1afc6553da2ae148a3908cf6d147.zip gdb-378bfd1b7a2a1afc6553da2ae148a3908cf6d147.tar.gz gdb-378bfd1b7a2a1afc6553da2ae148a3908cf6d147.tar.bz2 |
2003-03-27 Andrew Cagney <cagney@redhat.com>
* regcache.c (write_sp): Delete function and references.
* inferior.h (write_sp): Delete declaration.
* valops.c (hand_function_call): Replace write_sp with
TARGET_WRITE_SP.
* sparc-tdep.c (sparc_push_dummy_frame): Ditto.
(sparc_pop_frame): Ditto.
Index: doc/ChangeLog
2003-03-27 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Remove
references to write_sp.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index ab8a56d..1cc2b36 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,5 +1,10 @@ 2003-03-27 Andrew Cagney <cagney@redhat.com> + * gdbint.texinfo (Target Architecture Definition): Remove + references to write_sp. + +2003-03-27 Andrew Cagney <cagney@redhat.com> + * gdb.texinfo (GDB/MI Variable Objects): Replace @include with chapter body. Use @smallexample instead of @example. (Annotations): Ditto. diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index bd2a722..46bbe08 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -3894,12 +3894,11 @@ Number of bits in a short integer; defaults to @code{2 * TARGET_CHAR_BIT}. @findex read_pc @findex write_pc @findex read_sp -@findex write_sp @findex read_fp These change the behavior of @code{read_pc}, @code{write_pc}, -@code{read_sp}, @code{write_sp} and @code{read_fp}. For most targets, -these may be left undefined. @value{GDBN} will call the read and write -register functions with the relevant @code{_REGNUM} argument. +@code{read_sp} and @code{read_fp}. For most targets, these may be left +undefined. @value{GDBN} will call the read and write register functions +with the relevant @code{_REGNUM} argument. These macros are useful when a target keeps one of these registers in a hard to get at place; for example, part in a segment register and part |