vect: Fix vect_reduction_def check for odd/even widen mult [PR116142]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr81083.c
blob53f96a3835a334b419e79dbdc378826d3f1d8a91
1 /* { dg-do compile } */
3 void setjmp();
4 void func();
5 void a(int arg)
7 extern struct { int x; } obj;
8 setjmp();
9 obj.x = arg;
10 arg = arg;
11 if (obj.x)
12 func();
13 if (obj.x)
14 func();