summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr71077.c
blob: db83bc35d6bf081bd82e1560caecd24193e676ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR c++/71077  */
/* { dg-do compile } */
/* { dg-options "-O3" } */
/* { dg-additional-options "-mavx2" { target { i?86-*-* x86_64-*-* } } } */

void
foo (int *a, int n)
{
  int b, c;
  for (b = 0; b < n; b++)
    for (c = 0; c < 32; c++)
      if ((b & 1U) << c)
	a[b + c] = 0;
}