repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20031211-2.c
blob
555b17d9ac69d1cd50d7d033ddc7025359646ff2
1
struct
a
2
{
3
unsigned int
bitfield
:
3
;
4
};
5
6
int
main
()
7
{
8
struct
a a
;
9
10
a
.
bitfield
=
131
;
11
foo
(
a
.
bitfield
);
12
exit
(
0
);
13
}
14
15
foo
(
unsigned int
z
)
16
{
17
if
(
z
!=
3
)
18
abort
();
19
}