aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/e.c
blob: fa20e00ef8f05b50d6e45cbd46876bdfacaeb258 (plain)
1
2
3
4
5
6
7
8
9
10
foo (short a, int *p, short *s)
{
  int i;
  for (i = 10;  i >= 0; i--)
    {
      a = (short) bar ();
      p[i] = a;
      s[i] = a;
    }
}