2 // PR middle-end/111285
4 // The lowering of vect absu was done incorrectly
6 #define vect1 __attribute__((vector_size(sizeof(int))))
8 #define negabs(a) a < 0 ? a : -a
10 __attribute__((noinline))
15 __attribute__((noinline))
16 vect1 int v(vect1 int a)
23 for(int i = -10; i < 10; i++)