2 20050613-1.c from the execute part of the gcc torture suite.
11 /* PR tree-optimization/22043 */
13 struct A
{ int i
; int j
; int k
; int l
; };
14 struct B
{ struct A a
; int r
[1]; };
15 struct C
{ struct A a
; int r
[0]; };
16 struct D
{ struct A a
; int r
[]; };
28 testTortureExecute (void)
30 struct B b
= { .a
.j
= 5 };
31 struct C c
= { .a
.j
= 5 };
32 struct D d
= { .a
.j
= 5 };