tree-inline.c (expand_call_inline): Remove local variable decl.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 12 Mar 2005 18:37:18 +0000 (18:37 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 12 Mar 2005 18:37:18 +0000 (18:37 +0000)
* tree-inline.c (expand_call_inline): Remove local variable
decl.

From-SVN: r96347

gcc/ChangeLog
gcc/tree-inline.c

index 4137e13fe12ef63f75d574519751c6c01d40340c..37e925c9611c96538727d01cb69e26a1a53bb82d 100644 (file)
@@ -38,6 +38,9 @@
        variable new_cond.
        (combine_blocks): Remove local variables exits and new_e.
 
+       * tree-inline.c (expand_call_inline): Remove local variable
+       decl.
+
 2005-03-12  Geoffrey Keating  <geoffk@apple.com>
 
        * c-lex.c (c_lex_with_flags): Add parameter to call to 
index 120bab0fb21e4932f93b58b40b8593236a8add9e..c130e768dea34200a38aee17fe4e10d26d520882 100644 (file)
@@ -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.  */