diff options
author | Jason Merrill <jason@redhat.com> | 2006-06-28 21:12:20 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2006-06-28 21:12:20 -0400 |
commit | 9949572916f27c168ed85ec83ab9924a50c53538 (patch) | |
tree | 73a9256ae37e1cb8034a062e396fe673286de067 /gcc/tree-ssa-alias.c | |
parent | 8547c7f8c9a1f6153b3988a5cf4105b3972ef20e (diff) | |
download | gcc-9949572916f27c168ed85ec83ab9924a50c53538.zip gcc-9949572916f27c168ed85ec83ab9924a50c53538.tar.gz gcc-9949572916f27c168ed85ec83ab9924a50c53538.tar.bz2 |
re PR c++/27768 (wrong-code with vectors)
PR c++/27768
* tree-ssa-alias.c (compute_flow_insensitive_aliasing): Add
may_aliases already in the tag's annotations to the bitmap.
From-SVN: r115062
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r-- | gcc/tree-ssa-alias.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 2da4e61..1607c71 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -1162,6 +1162,7 @@ compute_flow_insensitive_aliasing (struct alias_info *ai) struct alias_map_d *p_map = ai->pointers[i]; tree tag = var_ann (p_map->var)->symbol_mem_tag; var_ann_t tag_ann = var_ann (tag); + tree var; /* Call-clobbering information is not finalized yet at this point. */ if (PTR_IS_REF_ALL (p_map->var)) @@ -1170,11 +1171,15 @@ compute_flow_insensitive_aliasing (struct alias_info *ai) p_map->total_alias_vops = 0; p_map->may_aliases = BITMAP_ALLOC (&alias_obstack); + /* Add any pre-existing may_aliases to the bitmap used to represent + TAG's alias set in case we need to group aliases. */ + for (j = 0; VEC_iterate (tree, tag_ann->may_aliases, j, var); ++j) + bitmap_set_bit (p_map->may_aliases, DECL_UID (var)); + for (j = 0; j < ai->num_addressable_vars; j++) { struct alias_map_d *v_map; var_ann_t v_ann; - tree var; bool tag_stored_p, var_stored_p; v_map = ai->addressable_vars[j]; |