mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
Make __ffs hidden
This commit is contained in:
parent
c7ae84fa4c
commit
5bb43a4319
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2013-09-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* include/string.h (__ffs): Declare as hidden.
|
||||
* string/ffs.c (__ffs): Define as hidden.
|
||||
* sysdeps/i386/ffs.c (__ffs): Likewise.
|
||||
* sysdeps/i386/i686/ffs.c (__ffs): Likewise.
|
||||
* sysdeps/powerpc/ffs.c (__ffs): Likewise.
|
||||
* sysdeps/s390/ffs.c (__ffs): Likewise.
|
||||
* sysdeps/x86_64/ffs.c (__ffs): Likewise.
|
||||
|
||||
2013-09-20 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* NEWS: Mention malloc probes.
|
||||
|
@ -90,6 +90,7 @@ extern char *__strsep_g (char **__stringp, const char *__delim);
|
||||
libc_hidden_proto (__strsep_g)
|
||||
libc_hidden_proto (strnlen)
|
||||
libc_hidden_proto (memmem)
|
||||
libc_hidden_proto (__ffs)
|
||||
|
||||
libc_hidden_builtin_proto (memchr)
|
||||
libc_hidden_builtin_proto (memcpy)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2013-09-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* sysdeps/alpha/alphaev67/ffs.S (__ffs): Define as hidden.
|
||||
* sysdeps/alpha/ffs.S (__ffs): Likewise.
|
||||
|
||||
2013-09-11 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (__O_TMPFILE):
|
||||
|
@ -1,3 +1,7 @@
|
||||
2013-09-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* sysdeps/arm/armv6t2/ffs.S (__ffs): Define as hidden.
|
||||
|
||||
2013-09-18 Dinar Temirbulatov <dtemirbulatov@gmail.com>
|
||||
|
||||
[BZ #15640]
|
||||
|
@ -1,3 +1,7 @@
|
||||
2013-09-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* sysdeps/m68k/ffs.c (__ffs): Define as hidden.
|
||||
|
||||
2013-09-04 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/m68k/mmap64.c: New file.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2013-09-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* sysdeps/tile/ffs.c (__ffs): Define as hidden.
|
||||
|
||||
2013-08-21 Ondřej Bílka <neleai@seznam.cz>
|
||||
|
||||
* sysdeps/tile/jmpbuf-offsets.h: Fix typos.
|
||||
|
@ -47,4 +47,5 @@ ENTRY(__ffs)
|
||||
END(__ffs)
|
||||
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
|
@ -85,6 +85,7 @@ $ffsl..ng:
|
||||
END(ffsl)
|
||||
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
weak_extern (ffsl)
|
||||
weak_alias (ffsl, ffsll)
|
||||
|
@ -32,4 +32,5 @@ END (__ffs)
|
||||
|
||||
weak_alias (__ffs, ffs)
|
||||
weak_alias (__ffs, ffsl)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
|
@ -36,6 +36,7 @@ __ffs (x)
|
||||
return 32 - cnt;
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
#undef ffsl
|
||||
weak_alias (__ffs, ffsl)
|
||||
|
@ -27,6 +27,7 @@ __ffs (int x)
|
||||
return __builtin_ffs (x);
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
|
||||
#undef ffsll
|
||||
|
@ -46,6 +46,7 @@ __ffs (i)
|
||||
return table[x >> a] + a;
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
|
||||
#if ULONG_MAX == UINT_MAX
|
||||
|
@ -41,6 +41,7 @@ __ffs (x)
|
||||
return cnt;
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
#undef ffsl
|
||||
weak_alias (__ffs, ffsl)
|
||||
|
@ -39,6 +39,7 @@ __ffs (x)
|
||||
return cnt + 1;
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
#undef ffsl
|
||||
weak_alias (__ffs, ffsl)
|
||||
|
@ -35,6 +35,7 @@ __ffs (int x)
|
||||
return 32 - cnt;
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
#if ULONG_MAX == UINT_MAX
|
||||
#undef ffsl
|
||||
|
@ -63,6 +63,7 @@ __ffs (x)
|
||||
}
|
||||
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
#if ULONG_MAX == UINT_MAX
|
||||
#undef ffsl
|
||||
|
@ -35,4 +35,5 @@ __ffs (int x)
|
||||
return cnt + 1;
|
||||
}
|
||||
weak_alias (__ffs, ffs)
|
||||
libc_hidden_def (__ffs)
|
||||
libc_hidden_builtin_def (ffs)
|
||||
|
Loading…
Reference in New Issue
Block a user