blob: 212b5dbea18a91bd59d2caf9dc4f4cc3fe531762 [file] [log] [blame]
/* { dg-require-effective-target vect_int } */
/* { dg-require-effective-target vect_shift } */
#include <stdarg.h>
#include "tree-vect.h"
#define N 64
#define C 7
__attribute__ ((noinline)) void
foo (unsigned short *src, unsigned int *dst)
{
int i;
unsigned short b, *s = src;
unsigned int *d = dst;
for (i = 0; i < N; i++)
{
b = *s++;
*d = b << C;
d++;
}
s = src;
d = dst;
for (i = 0; i < N; i++)
{
b = *s++;
if (*d != b << C)
abort ();
d++;
}
}
int main (void)
{
int i;
unsigned short in[N];
unsigned int out[N];
check_vect ();
for (i = 0; i < N; i++)
{
in[i] = i;
out[i] = 255;
__asm__ volatile ("");
}
foo (in, out);
return 0;
}
/* { dg-final { scan-tree-dump-times "vect_recog_widen_shift_pattern: detected" 1 "vect" { target vect_widen_shift } } } */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */