re PR tree-optimization/21304 (very long compile times with large cpp file from kdebindings)

2005-10-13  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/21304
        * tree-dfa.c (add_referenced_var): Only look at decls which
        have TREE_CONSTANT or TREE_READONLY set instead of if
        !TREE_PUBLIC or !TREE_CONSTANT.

From-SVN: r105390
This commit is contained in:
Andrew Pinski 2005-10-14 03:01:42 +00:00 committed by Andrew Pinski
parent e4785e43ff
commit 9da32d6309
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2005-10-13 Andrew Pinski <pinskia@physics.uc.edu>
PR tree-opt/21304
* tree-dfa.c (add_referenced_var): Only look at decls which
have TREE_CONSTANT or TREE_READONLY set instead of if
!TREE_PUBLIC or !TREE_CONSTANT.
2005-10-13 James E Wilson <wilson@specifix.com>
* doc/invoke.texi: For -x, add f95-cpp-input.

View File

@ -651,9 +651,9 @@ add_referenced_var (tree var, struct walk_state *walk_state)
optimizers. */
&& !DECL_EXTERNAL (var)
/* It's not necessary to walk the initial value of non-constant
public variables because it cannot be propagated by the
variables because it cannot be propagated by the
optimizers. */
&& (!TREE_PUBLIC (var) || !TREE_CONSTANT (var)))
&& (TREE_CONSTANT (var) || TREE_READONLY (var)))
walk_tree (&DECL_INITIAL (var), find_vars_r, walk_state, 0);
}
}