PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr79080.c
blobde0969d464795b2af39f3196b0643912cebe9c63
1 /* PR target/79080 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1" } */
4 /* { dg-additional-options "-mcpu=8548" { target { powerpc*-*-* && ilp32 } } } */
6 int
7 foo (char x)
9 int a;
11 for (;;)
13 x += 59;
14 if (x != 0)
15 a = 0;
16 else
17 return 0;