Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930126-1.c
blob: ff08e7d6131c029cc39ef5361c37d3765149ac6e [
file
] [
log
] [
blame
]
struct
s
{
unsigned
long
long
a
:
8
,
b
:
32
;
};
struct
s
f
(
struct
s x
)
{
x
.
b
=
0xcdef1234
;
return
x
;
}
main
()
{
static
struct
s i
;
i
.
a
=
12
;
i
=
f
(
i
);
if
(
i
.
a
!=
12
||
i
.
b
!=
0xcdef1234
)
abort
();
exit
(
0
);
}