[libc-commits] [PATCH] D81621: [libc] Remove dead code from memcpy to make it machine independent.
Siva Chandra via Phabricator via libc-commits
libc-commits at lists.llvm.org
Wed Jun 10 16:44:00 PDT 2020
sivachandra added a comment.
I am trying to get the string functions work on aarch64. While `memset` and `bzero` work as is, `memcpy` does not because of the x86 specific arrangement we have currently. The x86 specific pieces are actually in dead code. So I went ahead and removed them in this patch. If required in future, we should add it back in a fashion which does not break the build for non-x86 architectures.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81621/new/
https://reviews.llvm.org/D81621
More information about the libc-commits
mailing list