Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr48973-2.c
blob: a64d4918e4b4c63c10594add3e7517411717b69c [
file
] [
log
] [
blame
]
/* PR middle-end/48973 */
extern
void
abort
(
void
);
struct
S
{
int
f
:
1
;
}
s
;
int
v
=
-
1
;
int
main
()
{
s
.
f
=
v
<
0
;
if
((
unsigned
int
)
s
.
f
!=
-
1U
)
abort
();
return
0
;
}