Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr38428.c
blob: aa32fc149f4c9868faaef74f98e78a3beedb6d60 [
file
] [
log
] [
blame
]
/* PR middle-end/38428 */
struct
S
{
volatile
struct
{
unsigned
int
t
:
1
;
}
s
;
};
int
foo
(
struct
S
*
x
)
{
int
ret
;
if
(
x
->
s
.
t
)
ret
=
0
;
else
ret
=
10
;
return
ret
;
}