Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Jul 2023 20:27:34 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: e74bc7757a2e - main - lib/libc/string/ffs*.c: fix problems introduced with D40730
Message-ID:  <202307142027.36EKRYmh093510@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/src/commit/?id=e74bc7757a2ec538c5070973dbd83394933d4bfe

commit e74bc7757a2ec538c5070973dbd83394933d4bfe
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-07-07 18:59:26 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2023-07-14 20:23:31 +0000

    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 b9b38b4ed3e6..39ab518d5dc9 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307142027.36EKRYmh093510>