vect: Fix vect_reduction_def check for odd/even widen mult [PR116142]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr47281.c
blob517e8548e3f70029fc7ae7f1af8743e3eb37217f
1 /* { dg-do compile } */
3 struct T;
4 typedef void F(void);
6 F* aux(void (*x)())
8 return x;
11 void make_mess (int);
14 get_funloc (void (*x)(int), F* (*y)())
16 return y(x);
20 foo ()
22 return get_funloc (make_mess, aux);