Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
c-c++-common
/
uninit-G-O0.c
blob: d6edffede66d020146ea36f36186bb640a2e4386 [
file
] [
log
] [
blame
]
/* 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
;
}