(FUNCTION_ARG): Stack element of PARALLEL must come first
authorNick Clifton <nickc@cygnus.com>
Tue, 11 May 1999 06:27:30 +0000 (06:27 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Tue, 11 May 1999 06:27:30 +0000 (06:27 +0000)
From-SVN: r26879

gcc/ChangeLog
gcc/tm.texi

index c5b5fd89add70d6f59b5d2ed38e44be3ea0019f5..3385b7ff4276aaabbb5252e3e3f72580306e07b2 100644 (file)
@@ -1,3 +1,8 @@
+Mon May 10 13:51:24 1999  Nick Clifton  <nickc@cygnus.com>
+
+       * tm.texi (FUNCTION_ARG): Stack element of PARALLEL must come
+       first. 
+
 Tue May 11 01:32:01 1999  Jeffrey A Law  (law@cygnus.com)
 
        * fixinc/inclhack.def (sun_auth_proto): Apply to all targets.
index ac6e6beae53ed0d4eb34682e76abc8d6dd862edf..48f4439ed9414799e65205ee6f8855c0ae637820 100644 (file)
@@ -2787,13 +2787,16 @@ The value of the expression can also be a @code{parallel} RTX.  This is
 used when an argument is passed in multiple locations.  The mode of the
 of the @code{parallel} should be the mode of the entire argument.  The
 @code{parallel} holds any number of @code{expr_list} pairs; each one
-describes where part of the argument is passed.  In each @code{expr_list},
-the first operand can be either a @code{reg} RTX for the hard register
-in which to pass this part of the argument, or zero to pass the argument
-on the stack.  If this operand is a @code{reg}, then the mode indicates
-how large this part of the argument is.  The second operand of the
-@code{expr_list} is a @code{const_int} which gives the offset in bytes
-into the entire argument where this part starts.
+describes where part of the argument is passed.  In each
+@code{expr_list} the first operand must be a @code{reg} RTX for the hard
+register in which to pass this part of the argument, and the mode of the
+register RTX indicates how large this part of the argument is.  The
+second operand of the @code{expr_list} is a @code{const_int} which gives
+the offset in bytes into the entire argument of where this part starts.
+As a special exception the first @code{expr_list} in the @code{parallel} 
+RTX may have a first operand of zero.  This indicates that the bytes
+starting from the second operand of that @code{expr_list} are stored on
+the stack and not held in a register.
 
 @cindex @file{stdarg.h} and register arguments
 The usual way to make the ANSI library @file{stdarg.h} work on a machine