PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr15825-1.c
bloba4b46d44404da8061147956f11aa1d63c1e1c012
1 /* PR middle-end/15825 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 unsigned int foo(long long high, int unsigned_p)
7 int i;
8 if (high < 0)
9 if (!unsigned_p)
11 i = 1;
12 goto t;
14 i = 0;
16 return i;