Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
packed-1.c
blob: 9b226aeab9b49dab623b75945f2270914a0f8f39 [
file
] [
log
] [
blame
]
short
x1
=
17
;
struct
{
short
i __attribute__
((
packed
));
}
t
;
f
()
{
t
.
i
=
x1
;
if
(
t
.
i
!=
17
)
abort
();
}
main
()
{
f
();
exit
(
0
);
}