public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* [BUG] -Wuninitialized: initialize variable with itself
@ 2022-11-13 18:34 Alejandro Colomar
  2022-11-13 18:40 ` Andrew Pinski
  0 siblings, 1 reply; 10+ messages in thread
From: Alejandro Colomar @ 2022-11-13 18:34 UTC (permalink / raw)
  To: gcc; +Cc: Martin Uecker, Joseph Myers


[-- Attachment #1.1: Type: text/plain, Size: 1522 bytes --]

Hi,

While discussing some idea for a new feature, I tested the following example 
program:


     int main(void)
     {
         int i = i;
         return i;
     }


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/>

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2022-11-14 17:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-13 18:34 [BUG] -Wuninitialized: initialize variable with itself 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 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).