Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / vect / vect-widen-mult-u16.c
blob92d2e85a9fc4dce98d704465c57f0a98cb634556
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 64
8 unsigned short X[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
9 unsigned short Y[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
10 unsigned int result[N];
12 /* short->int widening-mult */
13 __attribute__ ((noinline)) int
14 foo1(int len) {
15 int i;
17 /* Not vectorized because X[i] and Y[i] are casted to 'int'
18 so the widening multiplication pattern is not recognized. */
19 for (i=0; i<len; i++) {
20 result[i] = (unsigned int)(X[i] * Y[i]);
24 int main (void)
26 int i;
28 check_vect ();
30 for (i=0; i<N; i++) {
31 X[i] = i;
32 Y[i] = 64-i;
33 __asm__ volatile ("");
36 foo1 (N);
38 for (i=0; i<N; i++) {
39 if (result[i] != X[i] * Y[i])
40 abort ();
43 return 0;
46 /*The induction loop is vectorized */
47 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 2 "vect" { xfail *-*-* } } } */
48 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_pack_trunc } } } */
49 /* { dg-final { cleanup-tree-dump "vect" } } */