[libc-commits] [libc] [libc] Implemented wmemmove (PR #142245)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Mon Jun 2 11:13:25 PDT 2025
================
@@ -104,3 +104,16 @@ add_entrypoint_object(
libc.hdr.wchar_macros
libc.src.__support.wctype_utils
)
+
+add_entrypoint_object(
+ wmemmove
+ SRCS
+ wmemmove.cpp
+ HDRS
+ wmemmove.h
+ DEPENDS
+ libc.hdr.types.size_t
+ libc.hdr.wchar_macros
+ libc.src.__support.wctype_utils
----------------
michaelrj-google wrote:
this function uses `inline_memmove` and not `wctype_utils`, need to correct the dependency here.
https://github.com/llvm/llvm-project/pull/142245
More information about the libc-commits
mailing list