blob: 96ab72ebd7bccf456bbca787e9c76385e0783099 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fno-tree-copy-prop -fno-tree-dominator-opts" } */
struct S
{
struct S *s;
};
static struct S *ss;
struct S *s;
void bar(void);
void foo(void)
{
for (;;)
{
s->s = ss;
bar ();
}
}