aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/decl.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-02-18 07:58:40 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2005-02-18 07:58:40 +0100
commit3a96c3b9d8cb8983c666c367fd7f9e5c278315df (patch)
tree903f1b0c94ccf13fa933a9fe9d234462b5b67614 /gcc/cp/decl.c
parent9fd64c63156c891794eb1cfb7ad7b043c04569c8 (diff)
downloadgcc-3a96c3b9d8cb8983c666c367fd7f9e5c278315df.zip
gcc-3a96c3b9d8cb8983c666c367fd7f9e5c278315df.tar.gz
gcc-3a96c3b9d8cb8983c666c367fd7f9e5c278315df.tar.bz2
re PR c++/19813 (wrong code with -finline-limit)
PR c++/19813 * emit-rtl.c (set_mem_attributes_minus_bitpos): Add assertion that ref to be marked MEM_READONLY_P doesn't have base that needs constructing. * decl.c (start_decl_1): Clear TREE_READONLY flag if its type has TYPE_NEEDS_CONSTRUCTING. (complete_vars): Likewise. From-SVN: r95217
Diffstat (limited to 'gcc/cp/decl.c')
-rw-r--r--gcc/cp/decl.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index 48f8d8c..4f1aa1f 100644
--- a/gcc/cp/decl.c
+++ b/gcc/cp/decl.c
@@ -3823,6 +3823,14 @@ start_decl_1 (tree decl)
instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
will be set correctly. */
maybe_push_cleanup_level (type);
+
+ /* An object declared 'const' is only readonly after it is
+ initialized. We don't have any way of expressing this currently,
+ so we need to be conservative and unset TREE_READONLY for types
+ with constructors. Otherwise aliasing code will ignore stores in
+ an inline constructor. */
+ if (TYPE_NEEDS_CONSTRUCTING (type))
+ TREE_READONLY (decl) = 0;
}
/* Handle initialization of references. DECL, TYPE, and INIT have the
@@ -10913,6 +10921,13 @@ complete_vars (tree type)
/* Complete the type of the variable. The VAR_DECL itself
will be laid out in expand_expr. */
complete_type (TREE_TYPE (var));
+ /* An object declared 'const' is only readonly after it is
+ initialized. We don't have any way of expressing this currently,
+ so we need to be conservative and unset TREE_READONLY for types
+ with constructors. Otherwise aliasing code will ignore stores in
+ an inline constructor. */
+ if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (var)))
+ TREE_READONLY (var) = 0;
/* Remove this entry from the list. */
*list = TREE_CHAIN (*list);
}