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
function_hooks/unwind: introduce return_implies_exact()
[smatch.git]
/
validation
/
linear
/
goto-stmt-expr-conditional.c
blob
bbfcb3ebc03957099a3cad1f79ec2a7d719e98e3
1
int
t
(
void
)
2
{
3
goto
inside
;
4
return
1
?
2
: ({
5
inside
:
6
return
3
;
7
4
;
8
});
9
}
10
11
void
f
(
int
x
,
int
y
)
12
{
13
1
?
x
: ({
14
a
:
15
y
;
16
});
17
goto
a
;
18
}
19
20
/*
21
* check-name: goto-stmt-expr-conditional
22
* check-command: test-linearize -Wno-decl $file
23
*
24
* check-error-ignore
25
* check-output-ignore
26
* check-output-excludes: END
27
*/