Commit fb2a5747 by Kazu Hirata Committed by Kazu Hirata

tree-inline.c (expand_call_inline): Remove local variable decl.

	* tree-inline.c (expand_call_inline): Remove local variable
	decl.

From-SVN: r96347
parent 2b74282d
......@@ -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
......
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment