1/* PR tree-optimization/21610 */
2
3struct S { char s; };
4struct T { struct S t; };
5
6struct S *const p = &((struct T * const) (0x4000))->t;
7
8void
9foo (void)
10{
11  p->s = 0;
12}
13