diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-09 16:35:56 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-09 16:35:56 +0000 |
commit | 030a482193a3b42e14df4b3260f79c46ebce0312 (patch) | |
tree | 1ecfc51f0e3741646cb4a02f83f9ac34139e6044 /gcc/config/rs6000/rs6000.h | |
parent | 716d251cf133b4799e39c33e3bda41e5884cdd63 (diff) | |
download | gcc-030a482193a3b42e14df4b3260f79c46ebce0312.tar.gz |
* rs6000.h (FUNCTION_ARG_PADDING): Define.
* rs6000.c (function_arg_padding): New function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17029 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000/rs6000.h')
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index d30af75f155..087ac5ad8ce 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -1461,6 +1461,15 @@ typedef struct rs6000_args #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \ function_arg_pass_by_reference(&CUM, MODE, TYPE, NAMED) +/* If defined, a C expression which determines whether, and in which + direction, to pad out an argument with extra space. The value + should be of type `enum direction': either `upward' to pad above + the argument, `downward' to pad below, or `none' to inhibit + padding. */ + +#define FUNCTION_ARG_PADDING(MODE, TYPE) \ + function_arg_padding (MODE, TYPE) + /* If defined, a C expression that gives the alignment boundary, in bits, of an argument with the specified mode and type. If it is not defined, PARM_BOUNDARY is used for all arguments. */ |