aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-06-26 11:09:26 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1993-06-26 11:09:26 -0400
commit6e716e89dc2fbd6bb6e9a2e938ce181c0322f149 (patch)
tree2ca61c1c887c5dc4033e5b0c48296c0f6e3d4d7d
parent224eeff2ea7cee133a2614f9562d6fa8bfeb0a85 (diff)
downloadgcc-6e716e89dc2fbd6bb6e9a2e938ce181c0322f149.zip
gcc-6e716e89dc2fbd6bb6e9a2e938ce181c0322f149.tar.gz
gcc-6e716e89dc2fbd6bb6e9a2e938ce181c0322f149.tar.bz2
(expand_calls): Fix typo: ALLOCATE_OUTGOING_ARGS
should be ACCUMULATE_OUTGOING_ARGS. From-SVN: r4749
-rw-r--r--gcc/calls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/calls.c b/gcc/calls.c
index c8ce137..9e502aa 100644
--- a/gcc/calls.c
+++ b/gcc/calls.c
@@ -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