vect: Fix vect_reduction_def check for odd/even widen mult [PR116142]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr50767.c
blob96ab72ebd7bccf456bbca787e9c76385e0783099
1 /* { dg-do compile } */
2 /* { dg-options "-fno-tree-copy-prop -fno-tree-dominator-opts" } */
4 struct S
6 struct S *s;
7 };
9 static struct S *ss;
10 struct S *s;
12 void bar(void);
14 void foo(void)
16 for (;;)
18 s->s = ss;
19 bar ();