PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr78721.c
blobfb2ffc30eb09d0f0048a213cb4b261b9b22d6938
1 /* { dg-do run } */
2 /* { dg-options "-O2" } */
4 int a, b, c;
6 int fn1 (char e, char f)
8 return !f || (e && f == 1);
11 void fn2 (char e)
13 while (b)
14 e = 0;
15 a = 128;
16 c = fn1 (e, a == e);
19 int main ()
21 fn2 (0);
22 return 0;