Commit ea0d4c4b by Jim Wilson

(assign_parms): Pass NULL_RTX to INIT_CUMULATIVE_*.

From-SVN: r3107
parent 8eef5f77
......@@ -2671,9 +2671,9 @@ assign_parms (fndecl, second_time)
bzero (parm_reg_stack_loc, nparmregs * sizeof (rtx));
#ifdef INIT_CUMULATIVE_INCOMING_ARGS
INIT_CUMULATIVE_INCOMING_ARGS (args_so_far, fntype, NULL_PTR);
INIT_CUMULATIVE_INCOMING_ARGS (args_so_far, fntype, NULL_RTX);
#else
INIT_CUMULATIVE_ARGS (args_so_far, fntype, NULL_PTR);
INIT_CUMULATIVE_ARGS (args_so_far, fntype, NULL_RTX);
#endif
/* We haven't yet found an argument that we must push and pretend the
......
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