mirror of git://gcc.gnu.org/git/gcc.git
* tree-ssa-ccp.c (fold_const_aggregate_ref): Do not check STATIC flag.
From-SVN: r164198
This commit is contained in:
parent
6611da3711
commit
1b0086ccac
|
@ -1,3 +1,7 @@
|
|||
2010-09-10 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* tree-ssa-ccp.c (fold_const_aggregate_ref): Do not check STATIC flag.
|
||||
|
||||
2010-09-10 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* tree.c (make_vector_type): Do not set TYPE_DEBUG_REPRESENTATION_TYPE.
|
||||
|
|
|
@ -1373,8 +1373,7 @@ fold_const_aggregate_ref (tree t)
|
|||
|
||||
if (ctor == NULL_TREE
|
||||
|| (TREE_CODE (ctor) != CONSTRUCTOR
|
||||
&& TREE_CODE (ctor) != STRING_CST)
|
||||
|| !TREE_STATIC (ctor))
|
||||
&& TREE_CODE (ctor) != STRING_CST))
|
||||
return NULL_TREE;
|
||||
|
||||
/* Get the index. If we have an SSA_NAME, try to resolve it
|
||||
|
@ -1460,8 +1459,7 @@ fold_const_aggregate_ref (tree t)
|
|||
}
|
||||
|
||||
if (ctor == NULL_TREE
|
||||
|| TREE_CODE (ctor) != CONSTRUCTOR
|
||||
|| !TREE_STATIC (ctor))
|
||||
|| TREE_CODE (ctor) != CONSTRUCTOR)
|
||||
return NULL_TREE;
|
||||
|
||||
field = TREE_OPERAND (t, 1);
|
||||
|
@ -1527,8 +1525,7 @@ fold_const_aggregate_ref (tree t)
|
|||
|
||||
if (ctor == NULL_TREE
|
||||
|| (TREE_CODE (ctor) != CONSTRUCTOR
|
||||
&& TREE_CODE (ctor) != STRING_CST)
|
||||
|| !TREE_STATIC (ctor))
|
||||
&& TREE_CODE (ctor) != STRING_CST))
|
||||
return NULL_TREE;
|
||||
|
||||
/* Get the byte offset. */
|
||||
|
|
Loading…
Reference in New Issue