public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
From: "simon.marchi at polymtl dot ca" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug gdb/31331] Wenum-constexpr-conversion should be fixed, soon treated as a hard error
Date: Mon, 05 Feb 2024 20:08:06 +0000 [thread overview]
Message-ID: <bug-31331-4717-8dnavpDzFV@http.sourceware.org/bugzilla/> (raw)
In-Reply-To: <bug-31331-4717@http.sourceware.org/bugzilla/>
https://sourceware.org/bugzilla/show_bug.cgi?id=31331
--- Comment #16 from Simon Marchi <simon.marchi at polymtl dot ca> ---
(In reply to Carlos Galvez from comment #9)
> > If I change the enum_underlying_type definition to be:
>
> That's exactly what I had in mind to change it to. You mention this change
> keeps the current behavior and the operator overload works as expected. Is
> there anything else that breaks?
So, with that change, for the enums that don't specify an underlying type,
enum_flags::underlying_type would go from a signed type to an unsigned one.
I didn't spot it at first, but another spot that uses the underlying type is
the definition of the binary bitwise operators, using this template:
https://gitlab.com/gnutools/binutils-gdb/-/blob/68d3bf7d246321407697aeb036036dae1a99a742/gdbsupport/enum-flags.h#L226-333
/* Raw enum on both LHS/RHS. Returns raw enum type. */ \
template <typename enum_type, \
typename = is_enum_flags_enum_type_t<enum_type>> \
constexpr enum_type \
OPERATOR_OP (enum_type e1, enum_type e2) \
{ \
using underlying = typename enum_flags<enum_type>::underlying_type; \
return (enum_type) (underlying (e1) OP underlying (e2)); \
} \
So we will cast the enum values to an unsigned type rather than a signed type
before applying the operator. I don't really see how things can go wrong with
that in practice.
--
You are receiving this mail because:
You are on the CC list for the bug.
next prev parent reply other threads:[~2024-02-05 20:08 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-02 20:36 [Bug gdb/31331] New: " carlosgalvezp at gmail dot com
2024-02-03 2:40 ` [Bug gdb/31331] " tromey at sourceware dot org
2024-02-03 21:14 ` tromey at sourceware dot org
2024-02-03 21:30 ` sam at gentoo dot org
2024-02-04 18:10 ` carlosgalvezp at gmail dot com
2024-02-04 18:57 ` simon.marchi at polymtl dot ca
2024-02-04 19:56 ` tromey at sourceware dot org
2024-02-04 19:58 ` tromey at sourceware dot org
2024-02-04 21:02 ` tromey at sourceware dot org
2024-02-04 21:19 ` tromey at sourceware dot org
2024-02-04 21:26 ` carlosgalvezp at gmail dot com
2024-02-05 19:28 ` carlosgalvezp at gmail dot com
2024-02-05 19:29 ` carlosgalvezp at gmail dot com
2024-02-05 19:30 ` carlosgalvezp at gmail dot com
2024-02-05 19:47 ` carlosgalvezp at gmail dot com
2024-02-05 19:53 ` simon.marchi at polymtl dot ca
2024-02-05 20:04 ` carlosgalvezp at gmail dot com
2024-02-05 20:08 ` simon.marchi at polymtl dot ca [this message]
2024-02-05 20:09 ` simon.marchi at polymtl dot ca
2024-02-05 20:11 ` simon.marchi at polymtl dot ca
2024-02-05 20:43 ` carlosgalvezp at gmail dot com
2024-02-05 20:55 ` carlosgalvezp at gmail dot com
2024-02-05 21:03 ` carlosgalvezp at gmail dot com
2024-02-05 21:19 ` simon.marchi at polymtl dot ca
2024-02-06 18:32 ` carlosgalvezp at gmail dot com
2024-02-07 20:47 ` carlosgalvezp at gmail dot com
2024-02-11 10:02 ` carlosgalvezp at gmail dot com
2024-02-11 17:16 ` tromey at sourceware dot org
2024-02-11 17:19 ` tromey at sourceware dot org
2024-02-11 18:21 ` carlosgalvezp at gmail dot com
2024-02-11 18:44 ` tromey at sourceware dot org
2024-02-11 20:40 ` carlosgalvezp at gmail dot com
2024-02-13 23:54 ` tromey at sourceware dot org
2024-03-26 15:37 ` tromey at sourceware dot org
2024-04-16 22:57 ` tromey at sourceware dot org
2024-04-17 10:41 ` carlosgalvezp at gmail dot com
2024-04-20 18:22 ` brobecker at gnat dot com
2024-05-08 22:12 ` carlosgalvezp at gmail dot com
2024-05-10 20:35 ` carlosgalvezp at gmail dot com
2024-05-19 3:57 ` carlosgalvezp at gmail dot com
2024-05-30 8:00 ` carlosgalvezp at gmail dot com
2024-05-30 16:04 ` simon.marchi at polymtl dot ca
2024-05-30 18:39 ` carlosgalvezp at gmail dot com
2024-06-02 18:41 ` carlosgalvezp at gmail dot com
2024-08-12 15:10 ` cvs-commit at gcc dot gnu.org
2024-08-12 15:20 ` carlosgalvezp at gmail dot com
2024-10-22 7:35 ` sam at gentoo dot org
2024-10-22 18:10 ` jwakely.gcc at gmail dot com
2024-10-22 18:22 ` jwakely.gcc at gmail dot com
2024-10-22 18:34 ` jwakely.gcc at gmail dot com
2024-10-22 18:35 ` jwakely.gcc at gmail dot com
2024-10-22 23:22 ` tromey at sourceware dot org
2024-10-23 8:44 ` carlosgalvezp at gmail dot com
2024-10-23 9:37 ` jwakely.gcc at gmail dot com
2024-10-23 10:02 ` carlosgalvezp at gmail dot com
2024-10-23 14:44 ` tromey at sourceware dot org
2024-10-23 14:45 ` tromey at sourceware dot org
2024-11-23 6:58 ` brobecker at gnat dot com
2024-11-23 7:00 ` brobecker at gnat dot com
2024-11-23 13:23 ` carlosgalvezp at gmail dot com
2024-11-28 11:23 ` carlosgalvezp at gmail dot com
2024-11-30 4:53 ` brobecker at gnat dot com
2024-12-21 21:28 ` carlosgalvezp at gmail dot com
2024-12-22 18:17 ` cvs-commit at gcc dot gnu.org
2024-12-22 18:18 ` tromey at sourceware dot org
2024-12-23 12:33 ` carlosgalvezp at gmail dot com
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=bug-31331-4717-8dnavpDzFV@http.sourceware.org/bugzilla/ \
--to=sourceware-bugzilla@sourceware.org \
--cc=gdb-prs@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).