aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/loop-1.c
blob: daa47f32d48a9a4338a4a911360c99164cbf4701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-std=gnu89" } */

foo (a)
{
  while ((a -= 1) != -1)
    bar (270000);
  putchar ('\n');
}

main ()
{
  foo (5);
}