diff options
author | Nathan Sidwell <nathan@acm.org> | 2022-01-04 13:36:44 -0800 |
---|---|---|
committer | Nathan Sidwell <nathan@acm.org> | 2022-01-05 04:13:56 -0800 |
commit | b1e701dc4adb11a5ed5f45c2fb31ba4689b718d0 (patch) | |
tree | 6fcf71bb828c4c3bbcac68230ab96813ef6071de /gcc/cp | |
parent | f2da9e26f5c0f04d48872938eff130e2028e75d3 (diff) | |
download | gcc-b1e701dc4adb11a5ed5f45c2fb31ba4689b718d0.zip gcc-b1e701dc4adb11a5ed5f45c2fb31ba4689b718d0.tar.gz gcc-b1e701dc4adb11a5ed5f45c2fb31ba4689b718d0.tar.bz2 |
[c++] Adjust mark used member in instantiated class scope
The fix for PR97966 caused a regression with (non-template) member
functions of template classes. We need to mark them used in the
instantiated class's scope, rather than the scope we were in before
instantiating, as the latter may itself be in template and change the
behaviour of marking a function as used.
gcc/cp/
* pt.c (instantiate_class_template_1): Process attribute((used)) set
in class's context.
gcc/testsuite/
* g++.dg/template/attr-used.C: New.
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/pt.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index c587966..0fa4a16 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -12277,6 +12277,14 @@ instantiate_class_template_1 (tree type) perform_instantiation_time_access_checks (pattern, args); perform_deferred_access_checks (tf_warning_or_error); + + /* Now that we've gone through all the members, instantiate those + marked with attribute used. We must do this in the context of + the class -- not the context we pushed from, as that might be + inside a template and change the behaviour of mark_used. */ + for (tree x : used) + mark_used (x); + pop_nested_class (); maximum_field_alignment = saved_maximum_field_alignment; if (!fn_context) @@ -12290,11 +12298,6 @@ instantiate_class_template_1 (tree type) if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type)) vec_safe_push (keyed_classes, type); - /* Now that we've gone through all the members, instantiate those - marked with attribute used. */ - for (tree x : used) - mark_used (x); - return type; } |