Commit 9e6aced0 by Alexandre Oliva Committed by Alexandre Oliva

tree-inline.c (remap_decls): Enable nonlocalized variables when not optimizing.

* tree-inline.c (remap_decls): Enable nonlocalized variables
when not optimizing.

From-SVN: r147941
parent 89fbbe4e
2009-05-28 Alexandre Oliva <aoliva@redhat.com>
* tree-inline.c (remap_decls): Enable nonlocalized variables
when not optimizing.
2009-05-28 Alexandre Oliva <aoliva@redhat.com>
* tree-ssa-live.c (remove_unused_locals): Skip when not optimizing.
Simplify other tests involving optimize.
......
......@@ -501,7 +501,7 @@ remap_decls (tree decls, VEC(tree,gc) **nonlocalized_list, copy_body_data *id)
&& (var_ann (old_var) || !gimple_in_ssa_p (cfun)))
cfun->local_decls = tree_cons (NULL_TREE, old_var,
cfun->local_decls);
if (debug_info_level > DINFO_LEVEL_TERSE
if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
&& !DECL_IGNORED_P (old_var)
&& nonlocalized_list)
VEC_safe_push (tree, gc, *nonlocalized_list, origin_var);
......@@ -519,7 +519,7 @@ remap_decls (tree decls, VEC(tree,gc) **nonlocalized_list, copy_body_data *id)
;
else if (!new_var)
{
if (debug_info_level > DINFO_LEVEL_TERSE
if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
&& !DECL_IGNORED_P (old_var)
&& nonlocalized_list)
VEC_safe_push (tree, gc, *nonlocalized_list, origin_var);
......
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