public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/99768] New: [11 Regression] Bogus -Wuninitialized diagnostic with type punning
@ 2021-03-25 11:46 acoplan at gcc dot gnu.org
  2021-03-25 12:28 ` [Bug c/99768] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: acoplan at gcc dot gnu.org @ 2021-03-25 11:46 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99768
           Summary: [11 Regression] Bogus -Wuninitialized diagnostic with
                    type punning
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: acoplan at gcc dot gnu.org
  Target Milestone: ---

For the following code (which has a strict aliasing violation):

float foo(unsigned v)
{
    unsigned tmp = v;
    float *f = (float *)(&tmp);
    return *f;
}

at -O2 -Wall we warn that tmp is used uninitialized:

test.c: In function ‘foo’:
test.c:5:12: warning: ‘tmp’ is used uninitialized [-Wuninitialized]
    5 |     return *f;
      |            ^~
test.c:3:14: note: ‘tmp’ declared here
    3 |     unsigned tmp = v;
      |              ^~~

but this is clearly bogus. Not sure if this is strictly considered a bug given
the strict aliasing problem, but thought it might be worth checking in any
case.

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

end of thread, other threads:[~2023-07-03 16:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-25 11:46 [Bug c/99768] New: [11 Regression] Bogus -Wuninitialized diagnostic with type punning acoplan at gcc dot gnu.org
2021-03-25 12:28 ` [Bug c/99768] " rguenth at gcc dot gnu.org
2021-03-25 16:07 ` [Bug middle-end/99768] " msebor at gcc dot gnu.org
2021-04-08 13:13 ` [Bug middle-end/99768] Unhelpful " rguenth at gcc dot gnu.org
2023-07-03 16:04 ` 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).