Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
uninit-G.c
blob: 08f5f532116097e214f331102be6cc680d31824a [
file
] [
log
] [
blame
]
/* Test we do not warn about initializing variable with address of self in the initialization. */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
void
*
f
()
{
void
*
i
=
&
i
;
return
i
;
}