diff options
author | Brendan Kehoe <brendan@gcc.gnu.org> | 1997-10-25 12:23:10 -0400 |
---|---|---|
committer | Brendan Kehoe <brendan@gcc.gnu.org> | 1997-10-25 12:23:10 -0400 |
commit | fc55478797083a56aa91843dc2303496da502cac (patch) | |
tree | b60a19035cb59659228b6a4a7063174f6ceb2f5d /gcc/integrate.c | |
parent | f15e65f1fe52a4c44d77988516308812e18b56bd (diff) | |
download | gcc-fc55478797083a56aa91843dc2303496da502cac.tar.gz |
Reverse this, bad call on my part:
1,4d0
< Fri Oct 24 17:49:10 1997 Jim Wilson <wilson@cygnus.com>
<
< * integrate.c (save_for_inline_copying): Copy parm_reg_stack_loc.
<
From-SVN: r16172
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index c62905009cb..27aa4df6ebf 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -413,7 +413,6 @@ save_for_inline_copying (fndecl) int max_uid; rtx first_nonparm_insn; char *new, *new1; - rtx *new2; /* Make and emit a return-label if we have not already done so. Do this before recording the bounds on label numbers. */ @@ -539,16 +538,6 @@ save_for_inline_copying (fndecl) XEXP (regno_reg_rtx[i], 0) = copy_for_inline (XEXP (regno_reg_rtx[i], 0)); - /* Copy the parm_reg_stack_loc array, and substitute for all of the rtx - contained in it. */ - new2 = savealloc (max_parm_reg * sizeof (rtx)); - bcopy ((char *) parm_reg_stack_loc, (char *) new2, - max_parm_reg * sizeof (rtx)); - parm_reg_stack_loc = new2; - for (i = LAST_VIRTUAL_REGISTER + 1; i < max_parm_reg; ++i) - if (parm_reg_stack_loc[i]) - parm_reg_stack_loc[i] = copy_for_inline (parm_reg_stack_loc[i]); - /* Copy the tree of subblocks of the function, and the decls in them. We will use the copy for compiling this function, then restore the original subblocks and decls for use when inlining this function. |