public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/110259] New: Wrong warning 'conversion to unsigned int' with enum and comma
@ 2023-06-14 20:06 roland.illig at gmx dot de
  2023-06-15  0:34 ` [Bug c/110259] " pinskia at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: roland.illig at gmx dot de @ 2023-06-14 20:06 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110259
           Summary: Wrong warning 'conversion to unsigned int' with enum
                    and comma
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roland.illig at gmx dot de
  Target Milestone: ---

~~~c
enum e {
        e1,
        e2,
};

int side_effect(void);

enum e demo(_Bool, enum e);

enum e
demo(_Bool cond, enum e c1)
{
        enum e var = cond
                     ?
                     c1
                     :
                     (
                         side_effect(),
                             e2
                     );
        return var;
}
~~~

gcc-12.2.0 gcc -O2 -Wconversion -c indent.c
indent.c: In function ‘demo’:
indent.c:16:22: warning: conversion to ‘unsigned int’ from ‘int’ may change the
sign of the result [-Wsign-conversion]
   16 |                      :
      |                      ^


Same result for -ansi, -std=c99, -std=c2x, as well as for GCC 10.4.0.

Removing the 'side_effect(),' makes the warning disappear.

The comma operator has the type of its right operand, therefore I don't see
where the 'unsigned' might come from.

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

* [Bug c/110259] Wrong warning 'conversion to unsigned int' with enum and comma
  2023-06-14 20:06 [Bug c/110259] New: Wrong warning 'conversion to unsigned int' with enum and comma roland.illig at gmx dot de
@ 2023-06-15  0:34 ` pinskia at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-06-15  0:34 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |DUPLICATE
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Dup of bug 53277.

*** This bug has been marked as a duplicate of bug 53277 ***

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

end of thread, other threads:[~2023-06-15  0:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-14 20:06 [Bug c/110259] New: Wrong warning 'conversion to unsigned int' with enum and comma roland.illig at gmx dot de
2023-06-15  0:34 ` [Bug c/110259] " pinskia 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).