From e74bc7757a2ec538c5070973dbd83394933d4bfe Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Fri, 7 Jul 2023 13:59:26 -0500 Subject: [PATCH] lib/libc/string/ffs*.c: fix problems introduced with D40730 Remove stale dependencies on the remaining old assembly ffs*/fls* implementations. Sponsored by: FreeBSD Foundation Reported by: jlduran@gmail.com, jhb Fixes: ee8b0c43 (D40730) Approved by: jhb Differential Revision: https://reviews.freebsd.org/D40966 --- tools/build/depend-cleanup.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh index b9b38b4ed3e..39ab518d5dc 100755 --- a/tools/build/depend-cleanup.sh +++ b/tools/build/depend-cleanup.sh @@ -189,5 +189,10 @@ if [ -f "$OBJTOP"/secure/lib/libcrypto/aria.o ]; then "$OBJTOP"/obj-lib32/secure/lib/libssl fi -# 20230711 ee8b0c436d72 replace ffs/fls implementations with clang builtins -clean_dep lib/libc ffs S +# 20230714 ee8b0c436d72 replace ffs/fls implementations with clang builtins +clean_dep lib/libc ffs S +clean_dep lib/libc ffsl S +clean_dep lib/libc ffsll S +clean_dep lib/libc fls S +clean_dep lib/libc flsl S +clean_dep lib/libc flsll S