aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr78362.c
blob: 66eea7d2fab7405ccc2efe0354384cbf36113569 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR target/78362.  */

long a;

void
foo (void)
{
  for (;; a--)
    if ((int) a)
      break;
}