Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr58970-2.c
blob: 3103b31e179e2ba436270d868220219cff509551 [
file
] [
log
] [
blame
]
/* PR middle-end/58970 */
struct
T
{
char
a
:
8
;
char
b
:
1
;
};
struct
S
{
char
x
;
struct
T t
[
1
];
};
void
foo
(
int
x
,
struct
S
*
s
)
{
if
(
x
==
-
1
)
s
->
t
[
x
].
b
=
0
;
}