Re: [PATCH v26 01/13] libstdc++: Optimize std::is_const compilation performance

2024-06-13 Thread Ken Matsui
On Thu, Jun 13, 2024 at 5:46 AM Jonathan Wakely wrote: > > On 23/05/24 15:15 -0700, Ken Matsui wrote: > >On Thu, May 23, 2024 at 3:15 PM Patrick Palka wrote: > >> > >> On Sat, 11 May 2024, Ken Matsui wrote: > >> > >> > This patch optimizes the compilation performance of std::is_const > >> > by di

Re: [PATCH v26 01/13] libstdc++: Optimize std::is_const compilation performance

2024-06-13 Thread Jonathan Wakely
On 23/05/24 15:15 -0700, Ken Matsui wrote: On Thu, May 23, 2024 at 3:15 PM Patrick Palka wrote: On Sat, 11 May 2024, Ken Matsui wrote: > This patch optimizes the compilation performance of std::is_const > by dispatching to the new __is_const built-in trait. This patch series LGTM Thank you

Re: [PATCH v26 01/13] libstdc++: Optimize std::is_const compilation performance

2024-06-13 Thread Jonathan Wakely
On 11/05/24 02:01 -0700, Ken Matsui wrote: This patch optimizes the compilation performance of std::is_const by dispatching to the new __is_const built-in trait. OK, thanks. libstdc++-v3/ChangeLog: * include/std/type_traits (is_const): Use __is_const built-in trait. (

Re: [PATCH v26 01/13] libstdc++: Optimize std::is_const compilation performance

2024-05-23 Thread Ken Matsui
On Thu, May 23, 2024 at 3:15 PM Patrick Palka wrote: > > On Sat, 11 May 2024, Ken Matsui wrote: > > > This patch optimizes the compilation performance of std::is_const > > by dispatching to the new __is_const built-in trait. > > This patch series LGTM Thank you! > > > > > libstdc++-v3/ChangeLog:

Re: [PATCH v26 01/13] libstdc++: Optimize std::is_const compilation performance

2024-05-23 Thread Patrick Palka
On Sat, 11 May 2024, Ken Matsui wrote: > This patch optimizes the compilation performance of std::is_const > by dispatching to the new __is_const built-in trait. This patch series LGTM > > libstdc++-v3/ChangeLog: > > * include/std/type_traits (is_const): Use __is_const built-in > t

[PATCH v26 01/13] libstdc++: Optimize std::is_const compilation performance

2024-05-11 Thread Ken Matsui
This patch optimizes the compilation performance of std::is_const by dispatching to the new __is_const built-in trait. libstdc++-v3/ChangeLog: * include/std/type_traits (is_const): Use __is_const built-in trait. (is_const_v): Likewise. Signed-off-by: Ken Matsui --- libs