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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
uninit-E.c
blob
eb356c3ee0d64c405ae12c1ce55dccc99ba3d189
1
/* Test we do warn about initializing variable with self when -Winit-self is supplied. */
2
/* { dg-do compile } */
3
/* { dg-options "-O -Wuninitialized -Winit-self" } */
4
5
int
f
()
6
{
7
int
i
=
i
;
/* { dg-warning "i" "uninitialized variable warning" } */
8
return
i
;
9
}