public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: "H.J. Lu" <hjl.tools@gmail.com>
To: Florian Weimer <fweimer@redhat.com>
Cc: GNU C Library <libc-alpha@sourceware.org>
Subject: Re: [PATCH v2] Add missing braces to bsearch inline implementation [BZ #28400]
Date: Thu, 30 Sep 2021 11:37:29 -0700	[thread overview]
Message-ID: <CAMe9rOo63-nxTZZtixOsV1sftL1FdHWPZdf-3z7H+rqGFL+pbw@mail.gmail.com> (raw)
In-Reply-To: <87zgru0w0s.fsf@oldenburg.str.redhat.com>

On Thu, Sep 30, 2021 at 11:16 AM Florian Weimer <fweimer@redhat.com> wrote:
>
> GCC treats the pragma as a statement, so that the else branch only
> consists of the pragma, not the return statement.
>
> Fixes commit a725ff1de965f4cc4f36a7e8ae795d40ca0350d7 ("Suppress
> -Wcast-qual warnings in bsearch").
>
> ---
> v2: Added bug number.  Tested on i686-linux-gnu and x86_64-linux-gnu.
>     The regressions are gone.
>
>  bits/stdlib-bsearch.h | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/bits/stdlib-bsearch.h b/bits/stdlib-bsearch.h
> index d688ed2e15..e2fcea6e17 100644
> --- a/bits/stdlib-bsearch.h
> +++ b/bits/stdlib-bsearch.h
> @@ -36,14 +36,16 @@ bsearch (const void *__key, const void *__base, size_t __nmemb, size_t __size,
>        else if (__comparison > 0)
>         __l = __idx + 1;
>        else
> +       {
>  #if __GNUC_PREREQ(4, 6)
>  # pragma GCC diagnostic push
>  # pragma GCC diagnostic ignored "-Wcast-qual"
>  #endif
> -       return (void *) __p;
> +         return (void *) __p;
>  #if __GNUC_PREREQ(4, 6)
>  # pragma GCC diagnostic pop
>  #endif
> +       }
>      }
>
>    return NULL;
>

LGTM.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>

Thanks.

-- 
H.J.

      reply	other threads:[~2021-09-30 18:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-30 18:16 Florian Weimer
2021-09-30 18:37 ` H.J. Lu [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMe9rOo63-nxTZZtixOsV1sftL1FdHWPZdf-3z7H+rqGFL+pbw@mail.gmail.com \
    --to=hjl.tools@gmail.com \
    --cc=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).