repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avoid warning on explicit 'bool <- restricted' casts
[smatch.git]
/
validation
/
kill-phi-node.c
blob
cff62b6493412ede4ebf910b0808e8bf9bc91408
1
void
foo
(
int
a
,
int
*
b
,
unsigned int
g
);
2
void
foo
(
int
a
,
int
*
b
,
unsigned int
g
)
3
{
4
int
d
=
0
;
5
6
if
((!
a
|| *
b
) &&
g
)
7
d
=
16
;
8
else
9
d
=
8
;
10
}
11
12
int
bar
(
void
);
13
int
bar
(
void
)
14
{
15
int
i
;
16
for
(
i
=
0
;
i
;
i
--)
17
;
18
return
0
;
19
}
20
21
/*
22
* check-name: kill-phi-node
23
* check-command: test-linearize $file
24
*
25
* check-output-ignore
26
* check-output-excludes: phisrc\\.
27
*/