diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-05 18:59:28 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-05 18:59:28 -0800 |
commit | ea0d4c4b6d8860d8263546fe8497c22201ace0e6 (patch) | |
tree | 72c5d9b463aa66066cd5dfb1b9bb3235841cbc42 /gcc | |
parent | 8eef5f77c5338215aae8b5722885ff1ef9f4f446 (diff) | |
download | gcc-ea0d4c4b6d8860d8263546fe8497c22201ace0e6.zip gcc-ea0d4c4b6d8860d8263546fe8497c22201ace0e6.tar.gz gcc-ea0d4c4b6d8860d8263546fe8497c22201ace0e6.tar.bz2 |
(assign_parms): Pass NULL_RTX to INIT_CUMULATIVE_*.
From-SVN: r3107
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/function.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c index 82ecd99..5464103 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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 |