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
helper: strip out the byte swaps in strip_expr()
[smatch.git]
/
validation
/
kill-insert-branch.c
blob
e59b5bbcda45e3338d2f1ddd6bd861f7fbfc2f34
1
void
foo
(
int
a
)
2
{
3
int
b
=
1
;
4
if
(
a
)
5
b
++;
6
if
(
b
)
7
;
8
}
9
10
void
bar
(
int
a
)
11
{
12
if
(
a
?
1
:
2
)
13
;
14
}
15
16
/*
17
* check-name: kill insert-branch
18
* check-command: test-linearize -Wno-decl $file
19
*
20
* check-output-ignore
21
* check-output-excludes: select\\.
22
*/