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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-pr20644.c
blob
a9a73241ef547b5409fc561a9978b2d6976d0236
1
/* PR 20644 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -Wuninitialized" } */
4
int
foo
()
5
{
6
int
i
=
0
;
7
int
j
;
8
9
if
(
1
==
i
)
10
return
j
;
11
12
return
0
;
13
}
14
15
int
bar
()
16
{
17
int
i
=
1
;
18
int
j
;
19
/* { dg-warning "uninitialized" "uninitialized" { target *-*-* } .-1 } */
20
21
if
(
1
==
i
)
22
return
j
;
23
24
return
0
;
25
}