repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-G.c
blob
08f5f532116097e214f331102be6cc680d31824a
1
/* Test we do not warn about initializing variable with address of self in the initialization. */
2
/* { dg-do compile } */
3
/* { dg-options "-O -Wuninitialized" } */
4
5
void
*
f
()
6
{
7
void
*
i
= &
i
;
8
return
i
;
9
}