Commit e992302c by Brendan Kehoe

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
parent 49ced9ea
......@@ -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,
......
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