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

typedef char type;

type
foo (b)
{
  type a;
  for (a = 10; a < b; a++)
    ;
}