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_ptr: handle scope of function pointers better
[smatch.git]
/
validation
/
bitfields.c
blob
ea24841fcb38cba33fb0dcc2d6f6ba5b25eca38b
1
/*
2
* Al Viro points out that we don't
3
* do bitfield -> integer promotions
4
* for array dereferences
5
*
6
* "warning: a.c:16:10: incompatible types for operation"
7
*/
8
static struct
{
9
int
x
:
4
;
10
}
y
;
11
12
extern
int
a
[];
13
14
static int
b
(
void
)
15
{
16
return
a
[
y
.
x
];
17
}
18
19
/*
20
* check-name: bitfield to integer promotion
21
*/