* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20070121.c
blob88af8bf628659f415a66e551dd97851e2f0d54b8
1 /* PR rtl-optimization/29329 */
2 /* Origin: Debian GCC Maintainers <debian-gcc@lists.debian.org> */
3 /* Testcase by: Andrew Pinski <pinskia@gmail.com> */
5 struct node234_Tag
7 int t1;
8 int kids[4];
9 void *elems[3];
12 void *add234_internal(struct node234_Tag *n, int ei)
14 int j;
15 for (j = ei; j < 2 && n->elems[j+1];)
16 j++;
17 n->kids[j+1] = 0;