]> gcc.gnu.org Git - gcc.git/commitdiff
(alpha_builtin_saveregs): Add to incoming args addr if less than 6
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 25 Apr 1995 14:12:34 +0000 (10:12 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 25 Apr 1995 14:12:34 +0000 (10:12 -0400)
named args, not less than or equal to.

From-SVN: r9437

gcc/config/alpha/alpha.c

index 5e7902ef4b7d72d2d62d968729282cc091857952..c6007135b9586f05c929b65aa8acabb54eb745a7 100644 (file)
@@ -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)));
 
This page took 0.070471 seconds and 5 git commands to generate.