diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-21 23:48:03 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-21 23:48:03 +0000 |
commit | 801c5cece339b00854ffdb2cec0908e0d16245c7 (patch) | |
tree | 016ded1e843637e385ea21b958c3ced84348f68c /gcc/function.c | |
parent | 31998e2f121b677133916335579ba76fe0517700 (diff) | |
download | gcc-801c5cece339b00854ffdb2cec0908e0d16245c7.tar.gz |
(assign_parms): Added arg to RETURN_POPS_ARGS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9011 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 88b346cb624..4ee042b373b 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3873,7 +3873,7 @@ assign_parms (fndecl, second_time) /* See how many bytes, if any, of its args a function should try to pop on return. */ - current_function_pops_args = RETURN_POPS_ARGS (TREE_TYPE (fndecl), + current_function_pops_args = RETURN_POPS_ARGS (fndecl, TREE_TYPE (fndecl), current_function_args_size); /* For stdarg.h function, save info about |