(emit_library_call): Handle OUTGOING_REG_PARM_STACK_SPACE.

Use NULL_TREE instead of (tree) 0.

From-SVN: r3268
This commit is contained in:
Jim Wilson 1993-01-18 10:55:02 -08:00
parent 89742723e5
commit 428e0ca8c8

View File

@ -2203,10 +2203,13 @@ emit_library_call (va_alist)
#ifdef REG_PARM_STACK_SPACE
args_size.constant = MAX (args_size.constant,
REG_PARM_STACK_SPACE ((tree) 0));
REG_PARM_STACK_SPACE (NULL_TREE));
#endif
#ifdef ACCUMULATE_OUTGOING_ARGS
#ifndef OUTGOING_REG_PARM_STACK_SPACE
args_size.constant -= REG_PARM_STACK_SPACE (NULL_TREE);
#endif
if (args_size.constant > current_function_outgoing_args_size)
current_function_outgoing_args_size = args_size.constant;
args_size.constant = 0;