Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
bitfield-1.c
blob: 0d5a82c09ddf189b0f80ad264609ff1955587141 [
file
] [
log
] [
blame
]
/* { dg-require-effective-target int128 } */
struct
f
{
__uint128_t
t
:
124
;
__uint128_t
t1
:
4
;
};
struct
f g
(
void
)
{
struct
f t
=
{
1
,
2
};
return
t
;
}