aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2024-02-28 23:20:13 +0100
committerJakub Jelinek <jakub@redhat.com>2024-02-28 23:20:13 +0100
commit29ac92436aa5c702e9e02c206e7590ebd806398e (patch)
treea3f10e8430c3ee256c2090f028b6766e17dbf92d /ChangeLog
parentbfecc907373addbdd6969e49caea6ff5d3ce1dc7 (diff)
downloadgcc-29ac92436aa5c702e9e02c206e7590ebd806398e.zip
gcc-29ac92436aa5c702e9e02c206e7590ebd806398e.tar.gz
gcc-29ac92436aa5c702e9e02c206e7590ebd806398e.tar.bz2
c++: Fix explicit instantiation of const variable templates after earlier implicit instantation [PR113976]
Already previously instantiated const variable templates had cp_apply_type_quals_to_decl called when they were instantiated, but if they need runtime initialization, their TREE_READONLY flag has been subsequently cleared. Explicit variable template instantiation calls grokdeclarator which calls cp_apply_type_quals_to_decl on them again, setting TREE_READONLY flag again, but nothing clears it afterwards, so we emit such instantiations into rodata sections and segfault when the dynamic initialization attempts to initialize them. The following patch fixes that by not calling cp_apply_type_quals_to_decl on already instantiated variable declarations. 2024-02-28 Jakub Jelinek <jakub@redhat.com> Patrick Palka <ppalka@redhat.com> PR c++/113976 * decl.cc (grokdeclarator): Don't call cp_apply_type_quals_to_decl on DECL_TEMPLATE_INSTANTIATED VAR_DECLs. * g++.dg/cpp1y/var-templ87.C: New test.
Diffstat (limited to 'ChangeLog')
0 files changed, 0 insertions, 0 deletions