diff options
author | Jeffrey A Law <law@cygnus.com> | 1997-11-14 03:20:11 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-11-13 20:20:11 -0700 |
commit | daa4b71743f92f2a1c4adcc52eb0838c76a30ac5 (patch) | |
tree | 14dc2c54027b1d8bc7c931d954057501da5329dc /gcc/integrate.c | |
parent | 9bb5394eca7bf11a141fb4c551afcb90b8e34747 (diff) | |
download | gcc-daa4b71743f92f2a1c4adcc52eb0838c76a30ac5.zip gcc-daa4b71743f92f2a1c4adcc52eb0838c76a30ac5.tar.gz gcc-daa4b71743f92f2a1c4adcc52eb0838c76a30ac5.tar.bz2 |
integrate.c (save_for_inline_copying): Add return value from savealloc.
* integrate.c (save_for_inline_copying): Add return value from
savealloc.
From-SVN: r16481
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 4c887fb..623beb5 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -542,7 +542,7 @@ save_for_inline_copying (fndecl) /* Copy the parm_reg_stack_loc array, and substitute for all of the rtx contained in it. */ - new2 = savealloc (max_parm_reg * sizeof (rtx)); + new2 = (rtx *) savealloc (max_parm_reg * sizeof (rtx)); bcopy ((char *) parm_reg_stack_loc, (char *) new2, max_parm_reg * sizeof (rtx)); parm_reg_stack_loc = new2; |