PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr52210.c
blobc7ebeb60870723da4ffda7a4200641d27903e62c
1 /* PR tree-optimization/52210 */
2 /* { dg-do compile } */
3 /* { dg-options "-O3" } */
5 void
6 foo (long *x, long y, long z)
8 long a = x[0];
9 long b = x[1];
10 x[0] = a & ~y;
11 x[1] = b & ~z;