[libc-commits] [PATCH] D100646: [libc] Add a set of elementary operations

Andre Vieira via Phabricator via libc-commits libc-commits at lists.llvm.org
Fri Apr 23 07:29:48 PDT 2021


avieira added a comment.

I'm going to try to rewrite my memcmp implementation using these now and report findings as I go through it :).



================
Comment at: libc/test/src/string/memory_utils/CMakeLists.txt:14
+  COMPILE_OPTIONS
+    -march=native
 )
----------------
AArch64 doesn't support -march=native, we use -mcpu=native instead, so it would be good to specify the correct option per target. 


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D100646



More information about the libc-commits mailing list