2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-03-28 11:40:55 +08:00

(alpha_builtin_saveregs): Add to incoming args addr if less than 6

named args, not less than or equal to.

From-SVN: r9437
This commit is contained in:
Richard Kenner 1995-04-25 10:12:34 -04:00
parent e041d3e92b
commit 622ff7098e

@ -1144,7 +1144,7 @@ alpha_builtin_saveregs (arglist)
order to account for the integer arg registers which are counted in
argsize above, but which are not actually stored on the stack. */
addr = (current_function_args_info <= 6
addr = (current_function_args_info <= 5
? plus_constant (virtual_incoming_args_rtx, 6 * UNITS_PER_WORD)
: plus_constant (virtual_incoming_args_rtx, - (6 * UNITS_PER_WORD)));