/* $OpenBSD: ffs.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */ /* * Written by J.T. Conklin . * Public domain. */ #include RCSID("$MirOS: src/kern/c/i386/ffs.S,v 1.2 2008/08/03 21:02:02 tg Exp $") .text 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 _ALIGN_TEXT L1: xorl %eax,%eax /* clear result */ ret