From ece7a5e9849032f4a31e725714c2db89d055b706 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Sat, 28 Dec 2019 02:11:41 +0000 Subject: [PATCH] arm/ffs.S: remove stale comment. We already use the CLZ instruction. Discussed with: andrew --- lib/libc/arm/string/ffs.S | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/libc/arm/string/ffs.S b/lib/libc/arm/string/ffs.S index 0ed815244755..1e25960d9bec 100644 --- a/lib/libc/arm/string/ffs.S +++ b/lib/libc/arm/string/ffs.S @@ -40,9 +40,6 @@ __FBSDID("$FreeBSD$"); * 6 bits as an index into the table. This algorithm should be a win * over the checking each bit in turn as per the C compiled version. * - * under ARMv5 there's an instruction called CLZ (count leading Zero's) that - * could be used - * * This is the ffs algorithm devised by d.seal and posted to comp.sys.arm on * 16 Feb 1994. */