mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 09:20:31 +08:00
A comment in satisfy_declaration_constraints says /* For inherited constructors, consider the original declaration; it has the correct template information attached. */ d = strip_inheriting_ctors (d); but it looks like this comment is wrong when the inherited constructor is for an instantiation of a constructor template. In that case, DECL_TEMPLATE_INFO is correct and DECL_INHERITED_CTOR points to the constructor template of the base class rather than to the particular instantiation of the constructor template (and so the DECL_TI_ARGS of the DECL_INHERITED_CTOR are in their dependent form). So doing strip_inheriting_ctors in this case then eventually leads to satisfy_associated_constraints returning true regardless of the constraints themselves, due to the passed in 'args' being dependent. An inherited constructor seems to have a non-empty DECL_TEMPLATE_INFO only when it's for an instantiation of a constructor template, so this patch fixes this issue by checking for empty DECL_TEMPLATE_INFO before calling strip_inheriting_ctors. There is another unguarded call to strip_inheriting_ctors in get_normalized_constraints_from_decl, but this one seems to be safe to do unconditionally because the rest of that function doesn't need/look at the DECL_TI_ARGS of the decl. gcc/cp/ChangeLog: PR c++/94549 * constraint.cc (satisfy_declaration_constraints): Don't strip the inherited constructor if it already has template information. gcc/testsuite/ChangeLog: PR c++/94549 * g++.dg/concepts/inherit-ctor3.C: Adjust expected diagnostics. * g++.dg/cpp2a/concepts-inherit-ctor4.C: New test. * g++.dg/cpp2a/concepts-inherit-ctor8.C: New test.
…
…
…
…
…
…
…
…
…
…
…
This directory contains the GNU Compiler Collection (GCC). The GNU Compiler Collection is free software. See the files whose names start with COPYING for copying permission. The manuals, and some of the runtime libraries, are under different terms; see the individual source files for details. The directory INSTALL contains copies of the installation information as HTML and plain text. The source of this information is gcc/doc/install.texi. The installation information includes details of what is included in the GCC sources and what files GCC installs. See the file gcc/doc/gcc.texi (together with other files that it includes) for usage and porting information. An online readable version of the manual is in the files gcc/doc/gcc.info*. See http://gcc.gnu.org/bugs/ for how to report bugs usefully. Copyright years on GCC source files may be listed using range notation, e.g., 1987-2012, indicating that every year in the range, inclusive, is a copyrightable year that could otherwise be listed individually.
Description
Languages
C++
31.9%
C
31.3%
Ada
12%
D
6.5%
Go
6.4%
Other
11.5%