r265789 - in /trunk: gcc/c-family/ChangeLog gcc...
jason@gcc.gnu.org
jason@gcc.gnu.org
Mon Nov 5 07:47:00 GMT 2018
Author: jason
Date: Mon Nov 5 07:47:02 2018
New Revision: 265789
URL: https://gcc.gnu.org/viewcvs?rev=265789&root=gcc&view=rev
Log:
Implement P0732R2, class types in non-type template parameters.
There is one significant piece of this that is not implemented yet: the
reliance on defaulted operator<=>, which someone else has been working on.
So, for the moment those lines are commented out of the testcases.
One tricky bit was treating template parameters of classtype as const
lvalues without making their decltype const; for this I used a
VIEW_CONVERT_EXPR wrapper, which previously could only appear in templates
as location wrappers.
The user-defined literal parts of P0732R2 are in the next patch.
gcc/cp/
* error.c (dump_simple_decl): Look through a template parm object.
* mangle.c (write_template_arg): Likewise.
(mangle_template_parm_object): New.
* pt.c (template_parm_object_p, get_template_parm_object): New.
(invalid_tparm_referent_p): Factor from convert_nontype_argument.
(convert_nontype_argument, invalid_nontype_parm_type_p): Handle
class-type template arguments.
* tree.c (lvalue_kind): Likewise.
gcc/c-family/
* c-cppbuiltin.c (c_cpp_builtins): Add
__cpp_nontype_template_parameter_class.
libiberty/
* cp-demangle.c (d_dump, d_make_comp, d_count_templates_scopes)
(d_print_comp_inner): Handle DEMANGLE_COMPONENT_TPARM_OBJ.
(d_special_name): Handle TA.
(d_expresion_1): Fix demangling of brace-enclosed initializer list.
include/
* demangle.h (enum demangle_component_type): Add
DEMANGLE_COMPONENT_TPARM_OBJ.
Added:
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class1.C
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class2.C
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class3.C
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class4.C
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class5.C
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class7.C
trunk/gcc/testsuite/g++.dg/cpp2a/nontype-class8.C
Modified:
trunk/gcc/c-family/ChangeLog
trunk/gcc/c-family/c-cppbuiltin.c
trunk/gcc/cp/ChangeLog
trunk/gcc/cp/cp-tree.h
trunk/gcc/cp/error.c
trunk/gcc/cp/mangle.c
trunk/gcc/cp/pt.c
trunk/gcc/cp/semantics.c
trunk/gcc/cp/tree.c
trunk/gcc/testsuite/g++.dg/cpp2a/feat-cxx2a.C
trunk/gcc/testsuite/g++.dg/template/crash55.C
trunk/gcc/testsuite/g++.dg/template/nontype16.C
trunk/gcc/testsuite/g++.dg/template/nontype4.C
trunk/gcc/testsuite/g++.dg/template/nontype5.C
trunk/gcc/testsuite/g++.dg/template/operator10.C
trunk/include/ChangeLog
trunk/include/demangle.h
trunk/libiberty/ChangeLog
trunk/libiberty/cp-demangle.c
trunk/libiberty/testsuite/demangle-expected
More information about the Gcc-cvs
mailing list