Commit 2bd6311d by Richard Guenther Committed by Richard Biener

tree-ssa-ccp.c (fold_const_aggregate_ref): Handle MEM_REF as base of ARRAY_REFs.

2010-07-14  Richard Guenther  <rguenther@suse.de>

	* tree-ssa-ccp.c (fold_const_aggregate_ref): Handle MEM_REF
	as base of ARRAY_REFs.

From-SVN: r162175
parent f051cb5d
2010-07-14 Richard Guenther <rguenther@suse.de>
* tree-ssa-ccp.c (fold_const_aggregate_ref): Handle MEM_REF
as base of ARRAY_REFs.
2010-07-14 Richard Guenther <rguenther@suse.de>
PR middle-end/44930
* tree-pretty-print.c (do_niy): Do not print a newline.
......
......@@ -1164,6 +1164,16 @@ fold_const_aggregate_ref (tree t)
base = TREE_OPERAND (t, 0);
switch (TREE_CODE (base))
{
case MEM_REF:
/* ??? We could handle this case. */
if (!integer_zerop (TREE_OPERAND (base, 1)))
return NULL_TREE;
base = get_base_address (base);
if (!base
|| TREE_CODE (base) != VAR_DECL)
return NULL_TREE;
/* Fallthru. */
case VAR_DECL:
if (!TREE_READONLY (base)
|| TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
......
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