Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
uninit-D.c
blob: ea957e49e98a9211df2c3c6aaae10909e472b8ef [
file
] [
log
] [
blame
]
/* Test we do not warn about initializing variable with self. */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
int
f
()
{
int
i
=
i
;
return
i
;
}