From: "Christian Biesinger via gdb-patches" <gdb-patches@sourceware.org>
To: Simon Marchi <simark@simark.ca>
Cc: gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH] Use gdb_static_assert in charset.c
Date: Mon, 07 Oct 2019 17:51:00 -0000 [thread overview]
Message-ID: <CAPTJ0XF_vhw2j+XonkKe7U6trPMjv-e16_+0RHCMMNq38z6uww@mail.gmail.com> (raw)
In-Reply-To: <4200cedb-f9ff-6041-acbd-991ea88fb502@simark.ca>
On Mon, Oct 7, 2019 at 12:46 PM Simon Marchi <simark@simark.ca> wrote:
>
> On 2019-10-07 1:35 p.m., Christian Biesinger via gdb-patches wrote:
> > It currently has a "manual" static assert.
> >
> > gdb/ChangeLog:
> >
> > 2019-10-07 Christian Biesinger <cbiesinger@google.com>
> >
> > * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
> > gdb_static_assert.
> > ---
> > gdb/charset.c | 12 +++---------
> > 1 file changed, 3 insertions(+), 9 deletions(-)
> >
> > diff --git a/gdb/charset.c b/gdb/charset.c
> > index 9df46c0c74d..73131651a6d 100644
> > --- a/gdb/charset.c
> > +++ b/gdb/charset.c
> > @@ -946,15 +946,9 @@ default_auto_wide_charset (void)
> > #define ENDIAN_SUFFIX "LE"
> > #endif
> >
> > -/* The code below serves to generate a compile time error if
> > - gdb_wchar_t type is not of size 2 nor 4, despite the fact that
> > - macro __STDC_ISO_10646__ is defined.
> > - This is better than a gdb_assert call, because GDB cannot handle
> > - strings correctly if this size is different. */
> > -
> > -extern char your_gdb_wchar_t_is_bogus[(sizeof (gdb_wchar_t) == 2
> > - || sizeof (gdb_wchar_t) == 4)
> > - ? 1 : -1];
> > +/* GDB cannot handle strings correctly if this size is different. */
> > +
> > +gdb_static_assert (sizeof (gdb_wchar_t) == 2 || sizeof (gdb_wchar_t) == 4);
> >
> > /* intermediate_encoding returns the charset used internally by
> > GDB to convert between target and host encodings. As the test above
> >
>
> Thanks, LGTM.
Thanks, pushed.
Christian
prev parent reply other threads:[~2019-10-07 17:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-07 17:35 Christian Biesinger via gdb-patches
2019-10-07 17:46 ` Simon Marchi
2019-10-07 17:51 ` Christian Biesinger via gdb-patches [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=CAPTJ0XF_vhw2j+XonkKe7U6trPMjv-e16_+0RHCMMNq38z6uww@mail.gmail.com \
--to=gdb-patches@sourceware.org \
--cc=cbiesinger@google.com \
--cc=simark@simark.ca \
/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