diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c index 5c31955..f58d3d1 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3369,8 +3369,9 @@ assign_parms (tree fndecl) /* See how many bytes, if any, of its args a function should try to pop on return. */ - crtl->args.pops_args = RETURN_POPS_ARGS (fndecl, TREE_TYPE (fndecl), - crtl->args.size); + crtl->args.pops_args = targetm.calls.return_pops_args (fndecl, + TREE_TYPE (fndecl), + crtl->args.size); /* For stdarg.h function, save info about regs and stack space used by the named args. */ |