From fb2a57478df38de11d1213970f8064c5a24539f5 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 12 Mar 2005 18:37:18 +0000 Subject: tree-inline.c (expand_call_inline): Remove local variable decl. * tree-inline.c (expand_call_inline): Remove local variable decl. From-SVN: r96347 --- gcc/tree-inline.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gcc/tree-inline.c') diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 120bab0..c130e76 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. */ -- cgit v1.1