1 /* PR target/78362.  */
2 
3 long a;
4 
5 void
foo(void)6 foo (void)
7 {
8   for (;; a--)
9     if ((int) a)
10       break;
11 }
12