]> gcc.gnu.org Git - gcc.git/commitdiff
(function_arg_partial_nregs): For BLKmode values...
authorRichard Stallman <rms@gnu.org>
Mon, 31 May 1993 03:03:43 +0000 (03:03 +0000)
committerRichard Stallman <rms@gnu.org>
Mon, 31 May 1993 03:03:43 +0000 (03:03 +0000)
(function_arg_partial_nregs): For BLKmode values, fits in
remaining register if total size <= MAX_ARGS_IN_REGISTERS, not <.

From-SVN: r4599

gcc/config/mips/mips.c

index 89c3403b78c3ef160069ba43f6ba2ecb7763a4fb..0e64387918c9a646a4b9b76e540fb6b04b5d3acd 100644 (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)
This page took 0.074129 seconds and 5 git commands to generate.