[libc-commits] [libc] [libc] memmove optimizations (PR #70043)
Guillaume Chatelet via libc-commits
libc-commits at lists.llvm.org
Wed Oct 25 03:42:30 PDT 2023
gchatelet wrote:
I missed your reply before sending mine...
> Does the following look better?
>
> ```
> if (vector_size >= 32 ? count < 32 : count <= 32)
> return generic::Memmove<uint128_t>::head_tail(dst, src, count);
> ```
It's more explicit yes.
https://github.com/llvm/llvm-project/pull/70043
More information about the libc-commits
mailing list