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
2013-10-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-pr20644-O0.c
blob
092d41164953067651a0bb7ceff3c65c9bbf189d
1
/* PR 20644 */
2
/* { dg-do compile } */
3
/* { dg-options "-O0 -Wuninitialized" } */
4
int
foo
()
5
{
6
int
i
=
0
;
7
int
j
;
8
9
if
(
1
==
i
)
10
return
j
;
/* { dg-bogus "uninitialized" "uninitialized" { xfail *-*-* } 10 } */
11
12
return
0
;
13
}
14
15
int
bar
()
16
{
17
int
i
=
1
;
18
int
j
;
19
20
if
(
1
==
i
)
21
return
j
;
/* { dg-warning "uninitialized" "uninitialized" { target *-*-* } 21 } */
22
23
return
0
;
24
}