Commit 7b0c7e62 by Jakub Jelinek Committed by David S. Miller

* config/sparc/sparc.h (MUST_PASS_IN_STACK): New macro.

From-SVN: r30796
parent 6d6365b2
1999-12-06 Jakub Jelinek <jakub@redhat.com>
* config/sparc/sparc.h (MUST_PASS_IN_STACK): New macro.
1999-12-05 Jakub Jelinek <jakub@redhat.com> 1999-12-05 Jakub Jelinek <jakub@redhat.com>
* config/sparc/sparc.c (sparc64_initialize_trampoline): Use gen_flushdi. * config/sparc/sparc.c (sparc64_initialize_trampoline): Use gen_flushdi.
......
...@@ -1744,6 +1744,13 @@ init_cumulative_args (& (CUM), (FNTYPE), (LIBNAME), (INDIRECT)); ...@@ -1744,6 +1744,13 @@ init_cumulative_args (& (CUM), (FNTYPE), (LIBNAME), (INDIRECT));
#define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \ #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
function_arg_advance (& (CUM), (MODE), (TYPE), (NAMED)) function_arg_advance (& (CUM), (MODE), (TYPE), (NAMED))
/* Nonzero if we do not know how to pass TYPE solely in registers. */
#define MUST_PASS_IN_STACK(MODE,TYPE) \
((TYPE) != 0 \
&& (TREE_CODE (TYPE_SIZE (TYPE)) != INTEGER_CST \
|| TREE_ADDRESSABLE (TYPE)))
/* Determine where to put an argument to a function. /* Determine where to put an argument to a function.
Value is zero to push the argument on the stack, Value is zero to push the argument on the stack,
or a hard register in which to store the argument. or a hard register in which to store the argument.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment