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
2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
uninit-pred-2_a.c
blob
5edf21d309fd07220bb576999d9a9fcc94afaee2
1
/* { dg-do compile } */
2
/* { dg-options "-Wuninitialized -O2" } */
3
4
int
g
;
5
void
bar
(
void
);
6
void
blah
(
int
);
7
8
int
foo
(
int
n
,
int
m
,
int
r
)
9
{
10
int
flag
=
0
;
11
int
v
;
12
13
if
(
n
)
14
{
15
v
=
r
;
16
flag
=
1
;
17
}
18
19
if
(
m
)
20
g
++;
21
else
22
bar
();
23
24
if
(
flag
)
25
blah
(
v
);
/* { dg-bogus "uninitialized" "bogus uninitialized var warning" } */
26
27
return
0
;
28
}