summaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-12 18:37:18 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-12 18:37:18 +0000
commitdea21b499bd9437a28be045244ec38a03879e1ab (patch)
treed384f0eceb841a1c17c1646745eabde07343420b /gcc/tree-inline.c
parentfa717acad485ffc5612ff20eba5e156a8cadb028 (diff)
downloadgcc-dea21b499bd9437a28be045244ec38a03879e1ab.tar.gz
* tree-inline.c (expand_call_inline): Remove local variable
decl. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96347 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 120bab0fb21..c130e768dea 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -1393,7 +1393,6 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data)
tree expr;
tree stmt;
tree use_retvar;
- tree decl;
tree fn;
tree arg_inits;
tree *inlined_body;
@@ -1604,8 +1603,8 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data)
modify_dest = NULL;
/* Declare the return variable for the function. */
- decl = declare_return_variable (id, return_slot_addr,
- modify_dest, &use_retvar);
+ declare_return_variable (id, return_slot_addr,
+ modify_dest, &use_retvar);
/* After we've initialized the parameters, we insert the body of the
function itself. */