rt_gccstream/gcc/testsuite/gcc.c-torture/compile/951004-1.c

24 lines
221 B
C

typedef struct
{
short v, h;
} S;
S a;
f (S pnt)
{
S mpnt, mtp;
(&pnt)->v -= 1;
mpnt = pnt;
mtp = a;
if (mtp.v != mpnt.v)
{
S tpnt;
tpnt = mtp;
mtp = mpnt;
mpnt = tpnt;
}
}