repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc.dg/ucnid-[23456].c: XFAIL on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-D.c
blob
ea957e49e98a9211df2c3c6aaae10909e472b8ef
1
/* Test we do not warn about initializing variable with self. */
2
/* { dg-do compile } */
3
/* { dg-options "-O -Wuninitialized" } */
4
5
int
f
()
6
{
7
int
i
=
i
;
8
return
i
;
9
}