diff options
author | Patrick Palka <ppalka@redhat.com> | 2023-07-11 10:05:19 -0400 |
---|---|---|
committer | Patrick Palka <ppalka@redhat.com> | 2023-07-11 10:05:19 -0400 |
commit | b76d71564925abcabe6f5ad61d904b23c682cdfb (patch) | |
tree | a86ab08219e4a241361e1dd4aaacb511c5919c96 /libgcc | |
parent | e5c64efb1367459dbc2d2e29856f23908cb503c1 (diff) | |
download | gcc-b76d71564925abcabe6f5ad61d904b23c682cdfb.zip gcc-b76d71564925abcabe6f5ad61d904b23c682cdfb.tar.gz gcc-b76d71564925abcabe6f5ad61d904b23c682cdfb.tar.bz2 |
c++: coercing variable template from current inst [PR110580]
Here during ahead of time coercion of the variable template-id v1<int>,
since we pass only the innermost arguments to coerce_template_parms (and
outer arguments are still dependent at this point), substitution of the
default template argument V=U just lowers U from level 2 to level 1 rather
than replacing it with int as expected. Thus after coercion we incorrectly
end up with (effectively) v1<int, T> instead of v1<int, int>.
Coercion of a class/alias template-id on the other hand always passes
all levels arguments, which avoids this issue. So this patch makes us
do the same for variable template-ids.
PR c++/110580
gcc/cp/ChangeLog:
* pt.cc (lookup_template_variable): Pass all levels of arguments
to coerce_template_parms, and use the parameters from the most
general template.
gcc/testsuite/ChangeLog:
* g++.dg/cpp1y/var-templ83.C: New test.
Diffstat (limited to 'libgcc')
0 files changed, 0 insertions, 0 deletions