1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
* sysdeps/powerpc/powerpc64/ffsll.c: New file.

	* sysdeps/powerpc/elf/libc-start.c: No need for a separate
This commit is contained in:
Ulrich Drepper
2004-04-04 06:17:27 +00:00
parent 4e73e1151d
commit 5da3d37718
5 changed files with 46 additions and 3 deletions

View File

@ -48,7 +48,7 @@ main (void)
for (i=0 ; i < 8 * sizeof (type); i++) \
try (#fct, 1ll << i, fct (((type) 1) << i), i + 1); \
for (i=0 ; i < 8 * sizeof (type) ; i++) \
try (#fct, (~0ll >> i) << i, fct ((~((type) 0) >> i) << i), i + 1); \
try (#fct, (~((type) 0) >> i) << i, fct ((~((type) 0) >> i) << i), i + 1);\
try (#fct, 0x80008000, fct ((type) 0x80008000), 16)
TEST (ffs, int);