public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96496] New: Conversion to enum with underlying type bool produces wrong result
@ 2020-08-06 13:36 fw at gcc dot gnu.org
  2020-08-06 13:40 ` [Bug c++/96496] " redi at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: fw at gcc dot gnu.org @ 2020-08-06 13:36 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96496

            Bug ID: 96496
           Summary: Conversion to enum with underlying type bool produces
                    wrong result
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fw at gcc dot gnu.org
  Target Milestone: ---

enum E : bool { One, Two };

int
f1 (int x)
{
  return (E) x;
}

The conversion must first be to type bool, according to:

“If the enumeration type has a fixed underlying type, the value is first
converted to that type by integral conversion, if necessary, and then to the
enumeration type.”

<http://eel.is/c++draft/expr.static.cast#10>

And that must produce a comparison against zero:

“A zero value, null pointer value, or null member pointer value is converted to
false; any other value is converted to true.”

<http://eel.is/c++draft/conv.bool#1>

Currently, GCC performs a bit mask (at -O2):

_Z2f1i:
        movl    %edi, %eax
        andl    $1, %eax
        ret

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-02-17 15:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-06 13:36 [Bug c++/96496] New: Conversion to enum with underlying type bool produces wrong result fw at gcc dot gnu.org
2020-08-06 13:40 ` [Bug c++/96496] " redi at gcc dot gnu.org
2020-08-06 13:56 ` mpolacek at gcc dot gnu.org
2020-08-25  9:22 ` redi at gcc dot gnu.org
2021-08-01  0:17 ` pinskia at gcc dot gnu.org
2022-10-28  0:38 ` cvs-commit at gcc dot gnu.org
2024-02-17 15:49 ` mpolacek at gcc dot gnu.org

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).