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
flow: set a flag insidehandle_builtin_overflow_func()
[smatch.git]
/
validation
/
inline-generic.c
blob
1f05c07904b5fce272eee0b8e2e02efaca0f4b1d
1
extern
int
a
,
b
;
2
inline
int
c
(
void
) {
return
a
++; }
3
inline
int
e
(
int
d
) {
return
0
; }
4
inline
unsigned
f
(
void
) {
return
e
(
_Generic
(
b
,
int
:
c
())); }
5
static int
g
(
void
) {
return
f
(); }
6
static int
h
(
void
) {
return
f
(); }
7
8
/*
9
* check-name: inline-generic
10
*/