From: Ulrich Drepper Date: Thu, 16 Jul 2009 14:18:53 +0000 (-0700) Subject: Remove warning and little optimization. X-Git-Tag: fedora/glibc-2.10.90-4~1^2~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55c4ce6885b577e2b29a4de674d4062a6882afe8;p=thirdparty%2Fglibc.git 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. --- diff --git a/ChangeLog b/ChangeLog index 1bfdd7b56d5..48b5d029f38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2009-07-16 Ulrich Drepper + * 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 restoring of ymm registers a bit. diff --git a/elf/dl-misc.c b/elf/dl-misc.c index 7d4e1a1725c..d50537ade75 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -315,6 +315,7 @@ _dl_name_match_p (const char *name, const struct link_map *map) unsigned long int +internal_function _dl_higher_prime_number (unsigned long int n) { /* These are primes that are near, but slightly smaller than, a diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 1e1bb4ccd4a..30f9d230919 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -335,6 +335,10 @@ struct audit_ifaces extern int _dl_name_match_p (const char *__name, const struct link_map *__map) 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 arguments are the error code, error string, and the objname the error occurred in. */