Mercurial > hg > CbC > GCC_original
view gcc/testsuite/c-c++-common/uninit-G-O0.c @ 16:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
line wrap: on
line source
/* Test we do not warn about initializing variable with address of self in the initialization. */ /* { dg-do compile } */ /* { dg-options "-Wuninitialized" } */ void *f() { void *i = &i; return i; }