NetBSD/lib/libc/arch/i386/string/ffs.S

21 lines
376 B
ArmAsm
Raw Normal View History

/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
1994-03-12 04:39:55 +03:00
#include <machine/asm.h>
#if defined(LIBC_SCCS)
1999-08-23 12:45:09 +04:00
RCSID("$NetBSD: ffs.S,v 1.8 1999/08/23 08:45:10 kleink Exp $")
#endif
ENTRY(ffs)
bsfl 4(%esp),%eax
jz L1 /* ZF is set if all bits are 0 */
incl %eax /* bits numbered from 1, not 0 */
ret
1999-08-23 12:45:09 +04:00
_ALIGN_TEXT
L1: xorl %eax,%eax /* clear result */
ret