summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-04 06:32:51 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-04 06:32:51 +0000
commitdfabcc74d4cc132642d1c73f735b9b5893ea9f44 (patch)
treed94c68983444bc146690cab532058e00275c9d49
parentbcba09217affe30ac3ece929d723dafb28830a09 (diff)
downloadgcc-dfabcc74d4cc132642d1c73f735b9b5893ea9f44.tar.gz
* doc/tm.texi: Replace SETUP_INCOMING_VARARGS with
TARGET_SETUP_INCOMING_VARARGS. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77226 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/tm.texi4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7a8ff1f4241..3412b03ed8e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
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.
* genattrtab.c: Don't mention gen_rtx in a comment.
* rtl.h: Remove the prototype for gen_rtx.
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
index cb32cc38acd..46c0b650be8 100644
--- a/gcc/doc/tm.texi
+++ b/gcc/doc/tm.texi
@@ -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