PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43730.c
blob0d91aef1d46574f9332913d9e98aeff5e2352599
1 /* { dg-do compile } */
2 /* { dg-options "-O0" } */
3 extern int (isinfl)(long double);
5 int
6 bugfun(long double x, long double y)
8 int result;
10 if (isinfl(x))
11 result = isinfl(y);
12 else
14 int kx, ky;
15 kx = ky = 1;
16 result = (kx == ky);
18 return (result);