diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ee5d71801b32..15cb4eb99640 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-05-22 Jan Hubicka + + PR middle-end/53426 + * tree-ssa-structalias.c (create_variable_info_for): Skip constructors from + other partitions. + 2012-05-22 Jan Hubicka PR middle-end/53161 diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 09642a03f425..e2fdff34e7bb 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -5583,7 +5583,8 @@ create_variable_info_for (tree decl, const char *name) /* If this is a global variable with an initializer and we are in IPA mode generate constraints for it. */ - if (DECL_INITIAL (decl)) + if (DECL_INITIAL (decl) + && vnode->analyzed) { VEC (ce_s, heap) *rhsc = NULL; struct constraint_expr lhs, *rhsp;