(alpha_builtin_saveregs): Fix typo in computing value for __base.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 24 Jun 1994 22:47:38 +0000 (18:47 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 24 Jun 1994 22:47:38 +0000 (18:47 -0400)
From-SVN: r7567

gcc/config/alpha/alpha.c

index 00d3e4118ec9359ca4832cc269975be6213607bc..02f17d33d6fbfc8c4a22a501dd005ec199726c10 100644 (file)
@@ -1070,7 +1070,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 <= 6
          ? plus_constant (virtual_incoming_args_rtx, 6 * UNITS_PER_WORD)
          : plus_constant (virtual_incoming_args_rtx, - (6 * UNITS_PER_WORD)));