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

foo (short a, int *p, short *s)
{
  int i;
  for (i = 10;  i >= 0; i--)
    {
      a = (short) bar ();
      p[i] = a;
      s[i] = a;
    }
}