blob: aa549682dbd869ba76dc20dae726bc9d04597899 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mavx512bw -O2 -ftree-vectorize" } */
void
foo(const char *in, char *out, unsigned n)
{
unsigned i;
for (i = 0; i < n; i++)
out[i] &= in[i];
}