From a7c1916aeada1e930a54990b6d71d1cb7fa8715f Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 8 Oct 1996 20:01:15 +0000 Subject: [PATCH] (decl_constant_value): Delete test for ! TREE_PUBLIC. From-SVN: r12916 --- gcc/c-typeck.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 0994ec3..ec26185 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -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) -- 2.7.4