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
/
930126-1.c
blob
ff08e7d6131c029cc39ef5361c37d3765149ac6e
1
struct
s
{
2
unsigned long long
a
:
8
,
b
:
32
;
3
};
4
5
struct
s
6
f
(
struct
s x
)
7
{
8
x
.
b
=
0xcdef1234
;
9
return
x
;
10
}
11
12
main
()
13
{
14
static struct
s i
;
15
i
.
a
=
12
;
16
i
=
f
(
i
);
17
if
(
i
.
a
!=
12
||
i
.
b
!=
0xcdef1234
)
18
abort
();
19
exit
(
0
);
20
}