Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
bitfield-endian-2.c
blob: 7644f71e846eef8a272a3476ee5cb7dff3bbb3e9 [
file
] [
log
] [
blame
]
/* { dg-require-effective-target int128 } */
#define
ENDIAN __attribute
((
scalar_storage_order
(
"little-endian"
)))
typedef
struct
ENDIAN
{
__uint128_t
t
:
124
;
__uint128_t
t1
:
4
;
}
f
;
f g
(
void
)
{
f t
=
{
1
,
2
};
return
t
;
}