diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-25 19:14:33 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-25 19:14:33 +0000 |
commit | 45153b515f53d2a4f9b3c70aef2161fa48e4ca62 (patch) | |
tree | 6a44fb17f224ab9f7b2ac9a98323dbb124c2bb38 /gcc/integrate.c | |
parent | ab9d0fcb0a851c72ade558e30cdbad1bf4994fe4 (diff) | |
download | gcc-45153b515f53d2a4f9b3c70aef2161fa48e4ca62.tar.gz |
(save_for_inline_nocopy): Remove decls of unused vars.
(expand_inline_function): Remove two block-scope decls of unused variable COPY.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6887 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 17929eced7e..adc457feca2 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -700,13 +700,8 @@ save_for_inline_nocopy (fndecl) tree fndecl; { rtx insn; - rtx head, copy; - tree parms; - int max_labelno, min_labelno, i, len; - int max_reg; - int max_uid; + rtx head; rtx first_nonparm_insn; - int function_flags; /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL. Later we set TREE_READONLY to 0 if the parm is modified inside the fn. @@ -1237,8 +1232,6 @@ expand_inline_function (fndecl, parms, target, ignore, type, structure_value_add tree arg = convert (TREE_TYPE (formal), TREE_VALUE (actual)); /* Mode of the variable used within the function. */ enum machine_mode mode = TYPE_MODE (TREE_TYPE (formal)); - /* Where parameter is located in the function. */ - rtx copy; /* Make sure this formal has some correspondence in the users code * before emitting any line notes for it. */ @@ -1508,8 +1501,6 @@ expand_inline_function (fndecl, parms, target, ignore, type, structure_value_add for (formal = DECL_ARGUMENTS (fndecl), i = 0; formal; formal = TREE_CHAIN (formal), i++) { - rtx copy = arg_vals[i]; - loc = RTVEC_ELT (arg_vector, i); if (GET_CODE (loc) == MEM |