* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr40797.c
blob001d1b507bdfe79bfca3400d2f0721be0d0d1dd1
1 typedef struct str { short x, y;} S;
3 static short
4 bar (short ch, short sl, short sr, short tl, short tr)
6 return 0;
9 void
10 foo (short ch, S *pi, short nc, S *po)
12 short clo, chi, lo, hi;
14 po->x = bar (ch, clo, chi, pi[lo].x, pi[hi].x);
15 po->y = bar (ch, clo, chi, pi[lo].y, pi[hi].y);