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