re PR c++/20073 (ICE initializing const array)

PR c++/20073
	* decl.c (start_decl_1): Don't clear TREE_READONLY.
	(cp_finish_decl): Likewise.
	(complete_vars): Call cp_apply_type_quals_to_decl.
	* typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
	cases where that's not valid.

From-SVN: r95442
This commit is contained in:
Mark Mitchell 2005-02-23 06:55:07 +00:00
parent 6793599535
commit af477510b7
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
2005-02-22 Mark Mitchell <mark@codesourcery.com>
PR c++/20073
* decl.c (start_decl_1): Don't clear TREE_READONLY.
(cp_finish_decl): Likewise.
(complete_vars): Call cp_apply_type_quals_to_decl.
* typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
cases where that's not valid.
PR c++/19991
* init.c (integral_constant_value): Iterate if the value of a decl
is itself a constant.