summaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-10-17 05:18:02 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-10-17 05:18:02 +0000
commita87a40624a779e47a3d2872f05c704b1630f00cc (patch)
tree5171457bd7e060d516802251009e8fc488c71493 /gcc/doc
parentf3939586a435d4d3ab40a01d44f237b5f3d146fd (diff)
downloadgcc-a87a40624a779e47a3d2872f05c704b1630f00cc.tar.gz
* doc/extend.texi (Return Address): Change
__builtin_extract_return_address to __builtin_extract_return_addr. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192525 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/extend.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 3a2d6a874dd..6bf929a5c40 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -6769,13 +6769,13 @@ random value. In addition, @code{__builtin_frame_address} may be used
to determine if the top of the stack has been reached.
Additional post-processing of the returned value may be needed, see
-@code{__builtin_extract_return_address}.
+@code{__builtin_extract_return_addr}.
This function should only be used with a nonzero argument for debugging
purposes.
@end deftypefn
-@deftypefn {Built-in Function} {void *} __builtin_extract_return_address (void *@var{addr})
+@deftypefn {Built-in Function} {void *} __builtin_extract_return_addr (void *@var{addr})
The address as returned by @code{__builtin_return_address} may have to be fed
through this function to get the actual encoded address. For example, on the
31-bit S/390 platform the highest bit has to be masked out, or on SPARC
@@ -6786,7 +6786,7 @@ If no fixup is needed, this function simply passes through @var{addr}.
@end deftypefn
@deftypefn {Built-in Function} {void *} __builtin_frob_return_address (void *@var{addr})
-This function does the reverse of @code{__builtin_extract_return_address}.
+This function does the reverse of @code{__builtin_extract_return_addr}.
@end deftypefn
@deftypefn {Built-in Function} {void *} __builtin_frame_address (unsigned int @var{level})