PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83986.c
blob31a53d936163774d3b56a6b28712ee3143f031e2
1 /* PR rtl-optimization/83986 */
2 /* { dg-do compile } */
3 /* { dg-options "-g -O2 -fsched2-use-superblocks -funwind-tables --param max-pending-list-length=1" } */
5 int v;
7 int
8 foo (int x)
10 v &= !!v && !!x;
11 if (v != 0)
12 foo (0);
13 return 0;