aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr67480.c
blob: aa549682dbd869ba76dc20dae726bc9d04597899 (plain)
1
2
3
4
5
6
7
8
9
10
/* { 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];
}