diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-11 15:17:18 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-11 15:17:18 +0000 |
commit | f27dd7fde7b149379b0eef6c393d4bb37533811a (patch) | |
tree | 937994b20c36b31928324692782448ba438182bc /gdb/doc | |
parent | f630a401b42ad72e62a648f81bb604325e6fe6b8 (diff) | |
download | gdb-f27dd7fde7b149379b0eef6c393d4bb37533811a.zip gdb-f27dd7fde7b149379b0eef6c393d4bb37533811a.tar.gz gdb-f27dd7fde7b149379b0eef6c393d4bb37533811a.tar.bz2 |
2003-09-11 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_STACK_ALIGN): Rename STACK_ALIGN.
* gdbarch.h, gdbarch.c: Re-generate.
* infcall.c (call_function_by_hand): Update.
* hppa-tdep.c (hppa_push_arguments): Update.
* ada-lang.c (place_on_stack): Update.
* xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
* sparc-tdep.c (sparc_gdbarch_init): Update.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
* hppa-tdep.c (hppa_gdbarch_init): Update.
* h8300-tdep.c (h8300_gdbarch_init): Delete comment refering to
stack_align.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index f611a6e..b826327 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-11 Andrew Cagney <cagney@redhat.com> + + * gdbint.texinfo (Target Architecture Definition): Replace + STACK_ALIGN with DEPRECATED_STACK_ALIGN. + 2003-08-18 Andrew Cagney <cagney@redhat.com> * gdbint.texinfo (Target Architecture Definition): Document diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 30f3018..d5be243 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -3218,14 +3218,14 @@ Otherwise return 0. Define this to adjust @var{address} so that it meets the alignment requirements for the start of a new stack frame. A stack frame's alignment requirements are typically stronger than a target processors -stack alignment requirements (@pxref{STACK_ALIGN}). +stack alignment requirements (@pxref{DEPRECATED_STACK_ALIGN}). This function is used to ensure that, when creating a dummy frame, both the initial stack pointer and (if needed) the address of the return value are correctly aligned. -Unlike @code{STACK_ALIGN}, this function always adjusts the address in -the direction of stack growth. +Unlike @code{DEPRECATED_STACK_ALIGN}, this function always adjusts the +address in the direction of stack growth. By default, no frame based stack alignment is performed. @@ -3812,9 +3812,9 @@ Define this to convert stab register numbers (as gotten from `r' declarations) into @value{GDBN} regnums. If not defined, no conversion will be done. -@item STACK_ALIGN (@var{addr}) -@anchor{STACK_ALIGN} -@findex STACK_ALIGN +@item DEPRECATED_STACK_ALIGN (@var{addr}) +@anchor{DEPRECATED_STACK_ALIGN} +@findex DEPRECATED_STACK_ALIGN Define this to increase @var{addr} so that it meets the alignment requirements for the processor's stack. |