[libc-commits] [libc] [libc] Implement vector 'split' and 'concat' routines (PR #157537)

Michael Jones via libc-commits libc-commits at lists.llvm.org
Wed Sep 10 09:55:44 PDT 2025


================
@@ -273,6 +276,77 @@ LIBC_INLINE constexpr static simd<T, N> select(simd<bool, N> m, simd<T, N> x,
   return m ? x : y;
 }
 
+namespace internal {
+template <typename T, size_t N, size_t O, size_t... I>
----------------
michaelrj-google wrote:

There are too many template arguments with one-character names. Could you give at least some of these more descriptive names here and below?

https://github.com/llvm/llvm-project/pull/157537


More information about the libc-commits mailing list