Commit fbc87627 by Diego Novillo Committed by Diego Novillo

tree-ssa-alias.c (create_alias_map_for): Do not get the alias set of the inner type of ARRAY_TYPEs.


	* tree-ssa-alias.c (create_alias_map_for): Do not get the
	alias set of the inner type of ARRAY_TYPEs.

From-SVN: r85338
parent 2afed683
2004-07-30 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-alias.c (create_alias_map_for): Do not get the
alias set of the inner type of ARRAY_TYPEs.
2004-07-29 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-ccp.c (visit_assignment): Move code to prevent
......
......@@ -1253,11 +1253,7 @@ create_alias_map_for (tree var, struct alias_info *ai)
struct alias_map_d *alias_map;
alias_map = xcalloc (1, sizeof (*alias_map));
alias_map->var = var;
if (TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE)
alias_map->set = get_alias_set (TREE_TYPE (TREE_TYPE (var)));
else
alias_map->set = get_alias_set (var);
alias_map->set = get_alias_set (var);
ai->addressable_vars[ai->num_addressable_vars++] = alias_map;
}
......
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