mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Remove warning and little optimization.
The prototype for _dl_higher_prime_number was missing. While at it, the function is now marked with internal_function.
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
2009-07-16 Ulrich Drepper <drepper@redhat.com>
|
2009-07-16 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/ldsodefs.h: Add prototype for
|
||||||
|
_dl_higher_prime_number.
|
||||||
|
* elf/dl-misc.c (_dl_higher_prime_number): Mark with internal_function.
|
||||||
|
|
||||||
* sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Optimize
|
* sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Optimize
|
||||||
restoring of ymm registers a bit.
|
restoring of ymm registers a bit.
|
||||||
|
|
||||||
|
@@ -315,6 +315,7 @@ _dl_name_match_p (const char *name, const struct link_map *map)
|
|||||||
|
|
||||||
|
|
||||||
unsigned long int
|
unsigned long int
|
||||||
|
internal_function
|
||||||
_dl_higher_prime_number (unsigned long int n)
|
_dl_higher_prime_number (unsigned long int n)
|
||||||
{
|
{
|
||||||
/* These are primes that are near, but slightly smaller than, a
|
/* These are primes that are near, but slightly smaller than, a
|
||||||
|
@@ -335,6 +335,10 @@ struct audit_ifaces
|
|||||||
extern int _dl_name_match_p (const char *__name, const struct link_map *__map)
|
extern int _dl_name_match_p (const char *__name, const struct link_map *__map)
|
||||||
internal_function;
|
internal_function;
|
||||||
|
|
||||||
|
/* Compute next higher prime number. */
|
||||||
|
extern unsigned long int _dl_higher_prime_number (unsigned long int n)
|
||||||
|
internal_function;
|
||||||
|
|
||||||
/* Function used as argument for `_dl_receive_error' function. The
|
/* Function used as argument for `_dl_receive_error' function. The
|
||||||
arguments are the error code, error string, and the objname the
|
arguments are the error code, error string, and the objname the
|
||||||
error occurred in. */
|
error occurred in. */
|
||||||
|
Reference in New Issue
Block a user