glibc/sysdeps/m88k/ffs.c

46 lines
1.3 KiB
C
Raw Normal View History

1991-06-12 18:33:01 +00:00
/* ffs -- find first set bit in a word, counted from least significant end.
For Motorola 88000.
1997-05-26 22:28:25 +00:00
This file is part of the GNU C Library.
Copyright (C) 1991, 1992, 1997, 2004, 2005 Free Software Foundation, Inc.
1991-06-12 18:33:01 +00:00
Contributed by Torbjorn Granlund (tege@sics.se).
1997-05-26 22:28:25 +00:00
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 04:56:23 +00:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1991-06-12 18:33:01 +00:00
1997-05-26 22:28:25 +00:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2001-07-06 04:56:23 +00:00
Lesser General Public License for more details.
1991-06-12 18:33:01 +00:00
2001-07-06 04:56:23 +00:00
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
1991-06-12 18:33:01 +00:00
#include <bstring.h>
#undef ffs
1992-03-11 23:10:37 +00:00
#ifdef __GNUC__
1991-06-12 18:33:01 +00:00
int
__ffs (x)
1997-05-26 22:28:25 +00:00
int x;
1991-06-12 18:33:01 +00:00
{
int cnt;
if (x == 0)
return 0;
asm ("ff1 %0,%1" : "=r" (cnt) : "r" (x & -x));
return cnt + 1;
}
weak_alias (__ffs, ffs)
2004-07-05 17:36:14 +00:00
libc_hidden_builtin_def (ffs)
1992-03-11 23:10:37 +00:00
#else
#include <string/ffs.c>
1992-03-11 23:10:37 +00:00
#endif