1 /* PR target/79080 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1" } */
4 /* { dg-additional-options "-mcpu=8548" { target { powerpc*-*-* && ilp32 } } } */
5 
6 int
foo(char x)7 foo (char x)
8 {
9   int a;
10 
11   for (;;)
12     {
13       x += 59;
14       if (x != 0)
15         a = 0;
16       else
17         return 0;
18     }
19 }
20