Commit 27e1a8d2 by Andrew Pinski Committed by Andrew Pinski

c-semantics.c (emit_local_var): Remove code for DECL_INITIAL.

2005-05-28  Andrew Pinski  <pinskia@physics.uc.edu>

        * c-semantics.c (emit_local_var): Remove code for DECL_INITIAL.

From-SVN: r82415
parent f935f97b
2005-05-28 Andrew Pinski <pinskia@physics.uc.edu> 2005-05-28 Andrew Pinski <pinskia@physics.uc.edu>
* c-semantics.c (emit_local_var): Remove code for DECL_INITIAL.
PR target/15720 PR target/15720
* config/darwin.c (machopic_indirect_call_target): Copy * config/darwin.c (machopic_indirect_call_target): Copy
the SYMBOL_REF_DECL from the original RTX for the new the SYMBOL_REF_DECL from the original RTX for the new
......
...@@ -246,18 +246,6 @@ emit_local_var (tree decl) ...@@ -246,18 +246,6 @@ emit_local_var (tree decl)
else else
expand_decl (decl); expand_decl (decl);
} }
if (DECL_INITIAL (decl))
{
/* Actually do the initialization. */
if (stmts_are_full_exprs_p ())
expand_start_target_temps ();
expand_decl_init (decl);
if (stmts_are_full_exprs_p ())
expand_end_target_temps ();
}
} }
/* Build the node for a return statement and return it. */ /* Build the node for a return statement and return it. */
......
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