[libc-commits] [PATCH] D93195: [libc] Add memmove implementation.

Guillaume Chatelet via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Jan 12 03:46:59 PST 2021


gchatelet accepted this revision.
gchatelet added a comment.
This revision is now accepted and ready to land.

LGTM, can you please wait for @sivachandra answer about using `assert` in code before submitting? Thx!



================
Comment at: libc/src/string/memmove.cpp:31
+  // If the distance between src_c and dest_c is equal to or greater
+  // than count (labs(src_c - dest_c) >= count), they would not overlap.
+  // e.g.   greater     equal       overlapping
----------------
remove or update


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D93195



More information about the libc-commits mailing list