From 32961db5544aa29a66bfbd3c3af3c1a06ea170f4 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Tue, 22 Nov 2005 22:35:55 +0000 Subject: [PATCH] re PR middle-end/22561 (ACATS ca11c01 wrong code) PR middle-end/22561 * tree-ssa-structalias.c (get_constraint_for): Handle ARRAY_RANGE_REF. From-SVN: r107377 --- gcc/ChangeLog | 5 +++++ gcc/tree-ssa-structalias.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1eb4cd1811dd..ddd01d84dadb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-11-21 Eric Botcazou + + PR middle-end/22561 + * tree-ssa-structalias.c (get_constraint_for): Handle ARRAY_RANGE_REF. + 2005-11-22 Ian Lance Taylor * optabs.c (expand_unop): Call SCALAR_FLOAT_MODE_P on a mode, not diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 128b142a380d..34485d0a7541 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -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; -- 2.47.2