(function_arg_partial_nregs): For BLKmode values...

(function_arg_partial_nregs): For BLKmode values, fits in
remaining register if total size <= MAX_ARGS_IN_REGISTERS, not <.

From-SVN: r4599
This commit is contained in:
Richard Stallman 1993-05-31 03:03:43 +00:00
parent 51591ce9cc
commit 47f113fe95
1 changed files with 1 additions and 1 deletions

View File

@ -2639,7 +2639,7 @@ function_arg_partial_nregs (cum, mode, type, named)
{
int words = (int_size_in_bytes (type) + 3) / 4;
if (words + cum->arg_words < MAX_ARGS_IN_REGISTERS)
if (words + cum->arg_words <= MAX_ARGS_IN_REGISTERS)
return 0; /* structure fits in registers */
if (TARGET_DEBUG_E_MODE)