(expand_calls): Fix typo: ALLOCATE_OUTGOING_ARGS
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 26 Jun 1993 15:09:26 +0000 (11:09 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 26 Jun 1993 15:09:26 +0000 (11:09 -0400)
should be ACCUMULATE_OUTGOING_ARGS.

From-SVN: r4749

gcc/calls.c

index c8ce137af31c0f8e07d9dc158c66de210a82546a..9e502aac4e0dedc51b2313db695d584763ce569a 100644 (file)
@@ -1,5 +1,5 @@
 /* Convert function calls to rtl insns, for GNU C compiler.
-   Copyright (C) 1989, 1992 Free Software Foundation, Inc.
+   Copyright (C) 1989, 1992, 1993 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -1678,7 +1678,7 @@ expand_call (exp, target, ignore)
   /* If register arguments require space on the stack and stack space
      was not preallocated, allocate stack space here for arguments
      passed in registers.  */
-#if ! defined(ALLOCATE_OUTGOING_ARGS) && defined(OUTGOING_REG_PARM_STACK_SPACE)
+#if ! defined(ACCUMULATE_OUTGOING_ARGS) && defined(OUTGOING_REG_PARM_STACK_SPACE)
   if (must_preallocate == 0 && reg_parm_stack_space > 0)
     anti_adjust_stack (GEN_INT (reg_parm_stack_space));
 #endif