Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr10352-1.c
blob: babb9d45a2813a4fffdde7f8480317f7001dd2bc [
file
] [
log
] [
blame
]
/* this is another case where phiopt
would create -signed1bit which is undefined. */
struct
{
int
a
:
1
;
}
b
;
int
*
c
=
(
int
*)&
b
,
d
;
int
main
()
{
d
=
c
&&
(
b
.
a
=
(
d
<
0
)
^
3
);
if
(
d
!=
1
)
__builtin_abort
();
return
0
;
}