[libc-commits] [PATCH] D155174: [libc][NFC] Split memset implementations per platform

Clement Courbet via Phabricator via libc-commits libc-commits at lists.llvm.org
Mon Jul 17 00:02:09 PDT 2023


courbet accepted this revision.
courbet added inline comments.
This revision is now accepted and ready to land.


================
Comment at: libc/src/string/memory_utils/aarch64/memset_implementations.h:48
+  }
+  if (count >= 448 && value == 0 && aarch64::neon::hasZva()) {
+    generic::Memset<uint512_t>::block(dst, 0);
----------------
This might warrant a comment.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D155174/new/

https://reviews.llvm.org/D155174



More information about the libc-commits mailing list