* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 951004-1.c
blob1ca60819cdd1554e23aa8851c8a97a343107e426
1 typedef struct
3 short v, h;
4 } S;
6 S a;
8 f (S pnt)
10 S mpnt, mtp;
12 (&pnt)->v -= 1;
13 mpnt = pnt;
14 mtp = a;
15 if (mtp.v != mpnt.v)
17 S tpnt;
19 tpnt = mtp;
20 mtp = mpnt;
21 mpnt = tpnt;