2 20060930-2.c from the execute part of the gcc torture suite.
13 /* PR middle-end/29272 */
15 struct S
{ struct S
*s
; } s
;
16 struct T
{ struct T
*t
; } t
;
22 memcpy (&p
->t
, &t
.t
, sizeof (t
.t
));
26 bar (void *p
, struct S
*q
)
34 testTortureExecute (void)
37 if (bar (&s
, &s
) != (void *) &t
)