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
PR rtl-optimization/88018
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
uninit-G-O0.c
blob
d6edffede66d020146ea36f36186bb640a2e4386
1
/* Test we do not warn about initializing variable with address of self in the initialization. */
2
/* { dg-do compile } */
3
/* { dg-options "-Wuninitialized" } */
4
5
void
*
f
()
6
{
7
void
*
i
= &
i
;
8
return
i
;
9
}