Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr19689.c
blob: d950315f237347752e42b62be05051233782488b [
file
] [
log
] [
blame
]
/* { dg-require-effective-target int32plus } */
extern
void
abort
(
void
);
struct
{
int
b
:
29
;
}
f
;
void
foo
(
short
j
)
{
f
.
b
=
j
;
}
int
main
()
{
foo
(-
55
);
if
(
f
.
b
!=
-
55
)
abort
();
return
0
;
}