[libc-commits] [PATCH] D93009: [libc] Add memcmp implementation.

Cheng Wang via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu Dec 10 00:40:27 PST 2020


cheng.w added inline comments.


================
Comment at: libc/src/string/memcmp.cpp:15
+
+int LLVM_LIBC_ENTRYPOINT(memcmp)(const void *lhs, const void *rhs,
+                                 size_t count) {
----------------
There is a TODO in strcmp.cpp (reviews.llvm.org/D82134) about speeding up. I did not find out the answer. Should I leave a TODO here too?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D93009



More information about the libc-commits mailing list