]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR middle-end/22561 (ACATS ca11c01 wrong code)
authorEric Botcazou <ebotcazou@adacore.com>
Tue, 22 Nov 2005 22:35:55 +0000 (22:35 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Tue, 22 Nov 2005 22:35:55 +0000 (22:35 +0000)
PR middle-end/22561
* tree-ssa-structalias.c (get_constraint_for): Handle ARRAY_RANGE_REF.

From-SVN: r107377

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

index 1eb4cd1811ddc2eb4192332792cd038cc61704b5..ddd01d84dadba261acee44d4fb441a31e0d4d928 100644 (file)
@@ -1,3 +1,8 @@
+2005-11-21  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR middle-end/22561
+       * tree-ssa-structalias.c (get_constraint_for): Handle ARRAY_RANGE_REF.
+
 2005-11-22  Ian Lance Taylor  <ian@airs.com>
 
        * optabs.c (expand_unop): Call SCALAR_FLOAT_MODE_P on a mode, not
index 128b142a380d1171fd2f73a1ff8512ddf21b2e9e..34485d0a754102dd514fa063f511ab54332ac450 100644 (file)
@@ -2285,6 +2285,7 @@ get_constraint_for (tree t, bool *need_anyoffset)
              return temp;
            }
          case ARRAY_REF:
+         case ARRAY_RANGE_REF:
          case COMPONENT_REF:
            temp = get_constraint_for_component_ref (t, need_anyoffset);
            return temp;