depend-cleanup.sh: Clean up the old arm64 memset.S

This has moved from a generated file in objdir to the source tree.
Remove the old file and any .depend files that reference it.

Reviewed by:	bapt (via IRC)
Fixes:	41ccf82b29 ("libc/aarch64: Use MOPS implementations of memcpy/memmove/memset where availble")
Sponsored by:	Arm Ltd
Differential Revision:	https://reviews.freebsd.org/D54729
This commit is contained in:
Andrew Turner
2026-01-15 15:04:48 +00:00
parent faa31fc0e7
commit fb96702a03
+6
View File
@@ -349,3 +349,9 @@ if [ ${MACHINE} = riscv ]; then
clean_dep lib/libc bcopy c "libc.string.bcopy.c"
clean_dep lib/libc bzero c "libc.string.bzero.c"
fi
if [ ${MACHINE_ARCH} = "aarch64" ]; then
# 20260113 41ccf82b29f3 libc/aarch64: Use MOPS implementations of memcpy/memmove/memset where availble
clean_dep lib/libc memset S "[^/]memset.S"
run rm -fv "$OBJTOP"/lib/libc/memset.S
fi