aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/run.c
blob: 8375b782c86354e004701f196b729aec722fd13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int
main (void)
{
  typedef short int xtype;

  xtype i;
  xtype ii;

  for (i = 0; i < 100; i++)
    for (ii = 65535; --ii;)
      ;
}