diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-21 18:48:03 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-21 18:48:03 -0500 |
commit | 64e6d9cc49a9738f42db970c5453b32b60239001 (patch) | |
tree | 016ded1e843637e385ea21b958c3ced84348f68c /gcc | |
parent | 1b65f56da220214e56ab6032a6afbb5afa48165c (diff) | |
download | gcc-64e6d9cc49a9738f42db970c5453b32b60239001.zip gcc-64e6d9cc49a9738f42db970c5453b32b60239001.tar.gz gcc-64e6d9cc49a9738f42db970c5453b32b60239001.tar.bz2 |
(assign_parms): Added arg to RETURN_POPS_ARGS.
From-SVN: r9011
Diffstat (limited to 'gcc')
-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 88b346c..4ee042b 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 |