Commit daa4b717 by Jeffrey A Law Committed by Jeff Law

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
parent 9bb5394e
Thu Nov 13 20:21:17 1997 Jeffrey A Law (law@cygnus.com)
* integrate.c (save_for_inline_copying): Add return value from
savealloc.
Thu Nov 13 19:12:33 1997 Brendan Kehoe <brendan@cygnus.com>
* fixincludes: Be a little more restrictive on what we will
......
......@@ -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;
......
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