calls.c (emit_call_1): Pass a NULL_RTX into emit_call_insn for missing last arg.

* calls.c (emit_call_1): Pass a NULL_RTX into emit_call_insn for
	missing last arg.

From-SVN: r3207
This commit is contained in:
Brendan Kehoe 1993-01-12 18:29:29 -05:00
parent 49ced9eab3
commit e992302c10
1 changed files with 2 additions and 1 deletions

View File

@ -323,7 +323,8 @@ emit_call_1 (funexp, funtype, stack_size, struct_value_size, next_arg_reg,
if (valreg)
emit_call_insn (gen_call_value (valreg,
gen_rtx (MEM, FUNCTION_MODE, funexp),
stack_size_rtx, next_arg_reg));
stack_size_rtx, next_arg_reg,
NULL_RTX));
else
emit_call_insn (gen_call (gen_rtx (MEM, FUNCTION_MODE, funexp),
stack_size_rtx, next_arg_reg,