OSDN Git Service

* tree-ssa-alias.c (create_alias_map_for): Do not get the
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Jul 2004 14:59:46 +0000 (14:59 +0000)
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Jul 2004 14:59:46 +0000 (14:59 +0000)
alias set of the inner type of ARRAY_TYPEs.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85338 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa-alias.c

index ae11799..53cb77e 100644 (file)
@@ -1,3 +1,8 @@
+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
index 7ad1867..2363ec9 100644 (file)
@@ -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;
 }