https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108030
--- Comment #8 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Matthias Kretz <mkr...@gcc.gnu.org>: https://gcc.gnu.org/g:2e29e2fbeb8936e5c85cefaf547cba42e17e137b commit r13-6298-g2e29e2fbeb8936e5c85cefaf547cba42e17e137b Author: Matthias Kretz <m.kr...@gsi.de> Date: Sat Jan 14 23:32:38 2023 +0100 libstdc++: Simplify three helper functions into one Broadcast is a very common function. This should reduce compile-time effort. Signed-off-by: Matthias Kretz <m.kr...@gsi.de> libstdc++-v3/ChangeLog: PR libstdc++/108030 * include/experimental/bits/simd.h (__vector_broadcast): Implement via __vector_broadcast_impl instead of __call_with_n_evaluations + 2 lambdas. (__vector_broadcast_impl): New.