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
This commit is contained in:
Eric Botcazou 2005-11-22 22:35:55 +00:00 committed by Eric Botcazou
parent 74b146981c
commit 32961db554
2 changed files with 6 additions and 0 deletions

View 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

View 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;