public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew Pinski <pinskia@gmail.com>
To: Alejandro Colomar <alx.manpages@gmail.com>
Cc: gcc@gcc.gnu.org, Martin Uecker <uecker@tugraz.at>,
	 Joseph Myers <joseph@codesourcery.com>
Subject: Re: [BUG] -Wuninitialized: initialize variable with itself
Date: Sun, 13 Nov 2022 10:45:25 -0800	[thread overview]
Message-ID: <CA+=Sn1nZDZsJnV7RCRkWsmGi6rQbu0XbiP+2Y4HbisQ8qpMpQA@mail.gmail.com> (raw)
In-Reply-To: <CA+=Sn1==xkbSzE+Gb_P6T8yQVhiOHSPXx_sze8Xp-o7+gNVj4Q@mail.gmail.com>

On Sun, Nov 13, 2022 at 10:41 AM Andrew Pinski <pinskia@gmail.com> wrote:
>
> On Sun, Nov 13, 2022 at 10:40 AM Andrew Pinski <pinskia@gmail.com> wrote:
> >
> > On Sun, Nov 13, 2022 at 10:36 AM Alejandro Colomar via Gcc
> > <gcc@gcc.gnu.org> wrote:
> > >
> > > Hi,
> > >
> > > While discussing some idea for a new feature, I tested the following example
> > > program:
> > >
> > >
> > >      int main(void)
> > >      {
> > >          int i = i;
> > >          return i;
> > >      }
> >
> > This is NOT a bug but a documented way of having the warning not being there.
> > See https://gcc.gnu.org/onlinedocs/gcc-12.2.0/gcc/Warning-Options.html#index-Winit-self
> > https://gcc.gnu.org/onlinedocs/gcc-12.2.0/gcc/Warning-Options.html#index-Wuninitialized
> > "If you want to warn about code that uses the uninitialized value of
> > the variable in its own initializer, use the -Winit-self option."
>
> I should note the main reason why I Know about this is because I fixed
> this feature years ago (at least for C front-end)
> and added the option to disable the feature.

When I says years, it was 19 years ago even, see
https://gcc.gnu.org/PR5582
and
https://gcc.gnu.org/PR10538
and
https://gcc.gnu.org/r0-52301-g3390f9c9bef0be

Thanks,


>
> >
> > Thanks,
> > Andrew Pinski
> >
> > >
> > >
> > > It seems obvious that it should give a warning, and in Clang it does:
> > >
> > >
> > >      $ clang --version | head -n1
> > >      Debian clang version 14.0.6
> > >
> > >      $ clang -Wall -Wextra foo.c
> > >      foo.c:3:10: warning: variable 'i' is uninitialized when used within its own
> > > initialization [-Wuninitialized]
> > >              int i = i;
> > >                  ~   ^
> > >      1 warning generated.
> > >
> > >
> > > But for GCC it looks fine:
> > >
> > >      $ gcc --version | head -n1
> > >      gcc (Debian 12.2.0-9) 12.2.0
> > >
> > >      $ gcc -Wall -Wextra foo.c
> > >      $
> > >
> > >
> > > Until you enable the analyzer, which catches the uninitialized use:
> > >
> > >
> > >      $ gcc -fanalyzer foo.c
> > >      foo.c: In function ‘main’:
> > >      foo.c:3:13: warning: use of uninitialized value ‘i’ [CWE-457]
> > > [-Wanalyzer-use-of-uninitialized-value]
> > >          3 |         int i = i;
> > >            |             ^
> > >        ‘main’: events 1-2
> > >          |
> > >          |    3 |         int i = i;
> > >          |      |             ^
> > >          |      |             |
> > >          |      |             (1) region created on stack here
> > >          |      |             (2) use of uninitialized value ‘i’ here
> > >          |
> > >
> > >
> > >
> > > I expect that GCC should be able to detect this bug with a simple warning.  The
> > > analyzer is quite unreadable compared to normal warnings.
> > >
> > > Cheers,
> > > Alex
> > >
> > > --
> > > <http://www.alejandro-colomar.es/>

      parent reply	other threads:[~2022-11-13 18:45 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-13 18:34 Alejandro Colomar
2022-11-13 18:40 ` Andrew Pinski
2022-11-13 18:41   ` Andrew Pinski
2022-11-13 18:43     ` Alejandro Colomar
2022-11-14  9:41       ` David Brown
2022-11-14 11:30         ` Alejandro Colomar
2022-11-14 15:10         ` NightStrike
2022-11-14 15:49           ` David Brown
2022-11-14 17:43             ` NightStrike
2022-11-13 18:45     ` Andrew Pinski [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='CA+=Sn1nZDZsJnV7RCRkWsmGi6rQbu0XbiP+2Y4HbisQ8qpMpQA@mail.gmail.com' \
    --to=pinskia@gmail.com \
    --cc=alx.manpages@gmail.com \
    --cc=gcc@gcc.gnu.org \
    --cc=joseph@codesourcery.com \
    --cc=uecker@tugraz.at \
    /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).