]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tm.texi: Replace SETUP_INCOMING_VARARGS with TARGET_SETUP_INCOMING_VARARGS.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 4 Feb 2004 06:32:51 +0000 (06:32 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 4 Feb 2004 06:32:51 +0000 (06:32 +0000)
* doc/tm.texi: Replace SETUP_INCOMING_VARARGS with
TARGET_SETUP_INCOMING_VARARGS.

From-SVN: r77226

gcc/ChangeLog
gcc/doc/tm.texi

index 7a8ff1f424195ae6adff41c29d2542369a2b459f..3412b03ed8e3ec99fb9d12784ff33a1fb26f39f5 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * doc/tm.texi: Replace SETUP_INCOMING_VARARGS with
+       TARGET_SETUP_INCOMING_VARARGS.
+
 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
 
        * emit-rtl.c (gen_rtx): Remove.
index cb32cc38acd82944b976b532d037ce9cbf7e5d9d..46c0b650be8f2aa07eb2a2bc6fc1c3e0ecba281f 100644 (file)
@@ -4395,7 +4395,7 @@ below.
 Use this built-in function to save the argument registers in memory so
 that the varargs mechanism can access them.  Both ISO and traditional
 versions of @code{va_start} must use @code{__builtin_saveregs}, unless
-you use @code{SETUP_INCOMING_VARARGS} (see below) instead.
+you use @code{TARGET_SETUP_INCOMING_VARARGS} (see below) instead.
 
 On some machines, @code{__builtin_saveregs} is open-coded under the
 control of the target hook @code{TARGET_EXPAND_BUILTIN_SAVEREGS}.  On
@@ -4525,7 +4525,7 @@ If you need to conditionally change ABIs so that one works with
 @code{TARGET_SETUP_INCOMING_VARARGS}, but the other works like neither
 @code{TARGET_SETUP_INCOMING_VARARGS} nor @code{TARGET_STRICT_ARGUMENT_NAMING} was
 defined, then define this hook to return @code{true} if
-@code{SETUP_INCOMING_VARARGS} is used, @code{false} otherwise.
+@code{TARGET_SETUP_INCOMING_VARARGS} is used, @code{false} otherwise.
 Otherwise, you should not define this hook.
 @end deftypefn