diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-09 00:00:44 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-09 00:00:44 +0000 |
commit | db8291e00d6b18cf7e34fd1c2eaab6787fd909fe (patch) | |
tree | 162256d5b68437f9aea7c4844dbcec0b7cccc899 /gcc/config/stormy16/stormy16.h | |
parent | 5e6197e9c2c4623dfb03f01a3e7134c0b908f646 (diff) | |
download | gcc-db8291e00d6b18cf7e34fd1c2eaab6787fd909fe.tar.gz |
* config/stormy16/stormy16.c (xstormy16_expand_builtin_va_arg): Fix
to handle arguments for which MUST_PASS_IN_STACK is true (e.g.,
variable-sized types).
(xstormy16_function_arg): New. Pass them that way too.
* config/stormy16/stormy16-protos.h (xstormy16_function_arg): New.
* config/stormy16/stormy16.h (FUNCTION_ARG): Call it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66619 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/stormy16/stormy16.h')
-rw-r--r-- | gcc/config/stormy16/stormy16.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/stormy16/stormy16.h b/gcc/config/stormy16/stormy16.h index 8281356850c..a0a78cdd377 100644 --- a/gcc/config/stormy16/stormy16.h +++ b/gcc/config/stormy16/stormy16.h @@ -1245,10 +1245,8 @@ enum reg_class returns nonzero for such an argument, the compiler will abort. If `REG_PARM_STACK_SPACE' is defined, the argument will be computed in the stack and then loaded into a register. */ -#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \ - ((MODE) == VOIDmode ? const0_rtx \ - : (CUM) + XSTORMY16_WORD_SIZE (TYPE, MODE) > NUM_ARGUMENT_REGISTERS ? 0 \ - : gen_rtx_REG (MODE, (CUM) + 2)) +#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \ + xstormy16_function_arg (CUM, MODE, TYPE, NAMED) /* Define this macro if the target machine has "register windows", so that the register in which a function sees an arguments is not necessarily the same |