Re: [PATCH] c++: Output less irrelevant info for function template decl [PR100716]

2021-05-27 Thread Jason Merrill via Gcc-patches
On 5/27/21 11:25 AM, Matthias Kretz wrote: On Thursday, 27 May 2021 17:07:40 CEST Jason Merrill wrote: On 5/26/21 5:29 PM, Matthias Kretz wrote: New revision which can also be compiled with GCC 4.8. From: Matthias Kretz Ensure dump_template_decl for function templates never prints template p

Re: [PATCH] c++: Output less irrelevant info for function template decl [PR100716]

2021-05-27 Thread Matthias Kretz
On Thursday, 27 May 2021 17:07:40 CEST Jason Merrill wrote: > On 5/26/21 5:29 PM, Matthias Kretz wrote: > > New revision which can also be compiled with GCC 4.8. > > > > From: Matthias Kretz > > > > Ensure dump_template_decl for function templates never prints template > > parameters after the f

Re: [PATCH] c++: Output less irrelevant info for function template decl [PR100716]

2021-05-27 Thread Jason Merrill via Gcc-patches
On 5/26/21 5:29 PM, Matthias Kretz wrote: New revision which can also be compiled with GCC 4.8. From: Matthias Kretz Ensure dump_template_decl for function templates never prints template parameters after the function name (it did with -fno-pretty-templates) and skip output of irrelevant & con

Re: [PATCH] c++: Output less irrelevant info for function template decl [PR100716]

2021-05-26 Thread Matthias Kretz
New revision which can also be compiled with GCC 4.8. From: Matthias Kretz Ensure dump_template_decl for function templates never prints template parameters after the function name (it did with -fno-pretty-templates) and skip output of irrelevant & confusing "[with T = T]" in dump_substitution.

[PATCH] c++: Output less irrelevant info for function template decl [PR100716]

2021-05-25 Thread Matthias Kretz
From: Matthias Kretz Ensure dump_template_decl for function templates never prints template parameters after the function name (it did with -fno-pretty-templates) and skip output of irrelevant & confusing "[with T = T]" in dump_substitution. gcc/cp/ChangeLog: PR c++/100716 *