(decl_constant_value): Delete test for ! TREE_PUBLIC.

From-SVN: r12916
This commit is contained in:
Doug Evans 1996-10-08 20:01:15 +00:00
parent b405396c6b
commit a7c1916aea
1 changed files with 3 additions and 3 deletions

View File

@ -938,16 +938,16 @@ c_alignof_expr (expr)
else
return c_alignof (TREE_TYPE (expr));
}
/* Return either DECL or its known constant value (if it has one). */
static tree
decl_constant_value (decl)
tree decl;
{
if (! TREE_PUBLIC (decl)
/* Don't change a variable array bound or initial value to a constant
if (/* Don't change a variable array bound or initial value to a constant
in a place where a variable is invalid. */
&& current_function_decl != 0
current_function_decl != 0
&& ! pedantic
&& ! TREE_THIS_VOLATILE (decl)
&& TREE_READONLY (decl) && ! ITERATOR_P (decl)