PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr71077.c
blobdb83bc35d6bf081bd82e1560caecd24193e676ef
1 /* PR c++/71077 */
2 /* { dg-do compile } */
3 /* { dg-options "-O3" } */
4 /* { dg-additional-options "-mavx2" { target { i?86-*-* x86_64-*-* } } } */
6 void
7 foo (int *a, int n)
9 int b, c;
10 for (b = 0; b < n; b++)
11 for (c = 0; c < 32; c++)
12 if ((b & 1U) << c)
13 a[b + c] = 0;