Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
cmp.c
blob: a82fe424735bf1f955b4589d3ae923039c5b1f63 [
file
] [
log
] [
blame
]
struct
fooalign
{
char
x
;
double
d
;};
union
fooround
{
long
x
;
double
d
;};
int
foo
()
{
int
extra
=
4
;
if
(
extra
<
sizeof
(
union
fooround
))
extra
=
sizeof
(
union
fooround
);
return
extra
;
}