* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20050516-1.c
blob2cdf6960807c2be7089ad9144f20031be463792d
1 /* PR tree-optimization/21610 */
3 struct S { char s; };
4 struct T { struct S t; };
6 struct S *const p = &((struct T * const) (0x4000))->t;
8 void
9 foo (void)
11 p->s = 0;