Re: [PATCH v26 03/13] libstdc++: Optimize std::is_pointer compilation performance

2024-06-14 Thread Andrew Pinski
On Thu, Jun 13, 2024 at 5:32 AM Jonathan Wakely wrote: > > On 11/05/24 02:01 -0700, Ken Matsui wrote: > >This patch optimizes the compilation performance of std::is_pointer > >by dispatching to the new __is_pointer built-in trait. > > > >libstdc++-v3/ChangeLog: > > > > * include/bits/cpp_typ

Re: [PATCH v26 03/13] libstdc++: Optimize std::is_pointer compilation performance

2024-06-13 Thread Ken Matsui
On Thu, Jun 13, 2024 at 5:31 AM Jonathan Wakely wrote: > > On 11/05/24 02:01 -0700, Ken Matsui wrote: > >This patch optimizes the compilation performance of std::is_pointer > >by dispatching to the new __is_pointer built-in trait. > > > >libstdc++-v3/ChangeLog: > > > > * include/bits/cpp_typ

Re: [PATCH v26 03/13] libstdc++: Optimize std::is_pointer 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_pointer by dispatching to the new __is_pointer built-in trait. libstdc++-v3/ChangeLog: * include/bits/cpp_type_traits.h (__is_pointer): Use __is_pointer built-in trait. Optimi

[PATCH v26 03/13] libstdc++: Optimize std::is_pointer compilation performance

2024-05-11 Thread Ken Matsui
This patch optimizes the compilation performance of std::is_pointer by dispatching to the new __is_pointer built-in trait. libstdc++-v3/ChangeLog: * include/bits/cpp_type_traits.h (__is_pointer): Use __is_pointer built-in trait. Optimize its implementation. * include/std/