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
Fix file cache tunables documentation
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-pr101573.c
blob
a574844b7914c3db55c9d2593b3079d2299c54fa
1
/* { dg-do compile } */
2
/* { dg-options "-O0 -Wuninitialized" } */
3
4
int
main
(
int
argc
,
char
**
argv
)
5
{
6
int
a
;
7
for
(;
a
<
5
; ++
a
)
/* { dg-warning "is used uninitialized" } */
8
;
9
return
0
;
10
}