Commit 6e716e89 by Richard Kenner

(expand_calls): Fix typo: ALLOCATE_OUTGOING_ARGS

should be ACCUMULATE_OUTGOING_ARGS.

From-SVN: r4749
parent 224eeff2
/* Convert function calls to rtl insns, for GNU C compiler. /* 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. This file is part of GNU CC.
...@@ -1678,7 +1678,7 @@ expand_call (exp, target, ignore) ...@@ -1678,7 +1678,7 @@ expand_call (exp, target, ignore)
/* If register arguments require space on the stack and stack space /* If register arguments require space on the stack and stack space
was not preallocated, allocate stack space here for arguments was not preallocated, allocate stack space here for arguments
passed in registers. */ 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) if (must_preallocate == 0 && reg_parm_stack_space > 0)
anti_adjust_stack (GEN_INT (reg_parm_stack_space)); anti_adjust_stack (GEN_INT (reg_parm_stack_space));
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment