blob: 4ec45d7a47e591263fa9acbfc7e6d3297e10a109 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-O3 -msve-vector-bits=512" } */
void f(unsigned short *restrict p1, unsigned int *restrict p2)
{
for (int i = 0; i < 16; ++i)
{
p1[i] /= 0xff;
p2[i] += 1;
}
}