/* { dg-require-effective-target vect_int } */ #include #include "tree-vect.h" #define N 64 #define DOT1 21834 #define DOT2 21876 unsigned short X[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))); unsigned short Y[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))); /* short->short->int dot product. Not detected as a dot-product pattern. Requires support for non-widneing multiplication and widening-summation. Vectorized with loop-aware SLP. */ __attribute__ ((noinline)) unsigned int foo1(int len, int *result1, int *result2) { int i; unsigned int res1 = 10, res2 = 20; unsigned short prod; for (i=0; i