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
This commit is contained in:
Alexandre Oliva 2009-05-28 06:52:07 +00:00 committed by Alexandre Oliva
parent 89fbbe4e18
commit 9e6aced0a9
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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);