From 87fce92c5c3660a08172a9e29faf54573cedd9ae Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 26 Jun 2020 10:04:41 +0100 Subject: This patch removes the use of the "register" keyword from the bsearch() and bsearch_r() functions supplied by libiberty. The register keyword is deprecated in C++17. 2020-06-25 Nick Clifton include/ * libiberty.h (bsearch_r): Remove use of the register keyword from the prototype. libiberty/ * bsearch.c (bsearch): Remove use of register keyword. * bsearch_r.c (bsearch_r): Likewise. --- libiberty/bsearch_r.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libiberty/bsearch_r.c') diff --git a/libiberty/bsearch_r.c b/libiberty/bsearch_r.c index 79ebae9..2a2ca6f 100644 --- a/libiberty/bsearch_r.c +++ b/libiberty/bsearch_r.c @@ -70,14 +70,14 @@ is respectively less than, matching, or greater than the array member. * look at item 3. */ void * -bsearch_r (register const void *key, const void *base0, - size_t nmemb, register size_t size, - register int (*compar)(const void *, const void *, void *), +bsearch_r (const void *key, const void *base0, + size_t nmemb, size_t size, + int (*compar)(const void *, const void *, void *), void *arg) { - register const char *base = (const char *) base0; - register int lim, cmp; - register const void *p; + const char *base = (const char *) base0; + int lim, cmp; + const void *p; for (lim = nmemb; lim != 0; lim >>= 1) { p = base + (lim >> 1) * size; -- cgit v1.1