1 /* { dg-do compile } */
2 
3 int bar();
foo(int * a,int b,int c)4 int foo (int *a, int b, int c)
5 {
6   int tem0 = bar ();
7   int tem1 = tem0 + b;
8   int tem3 = tem1 + c;
9   a[0] = tem3;
10   a[1] = tem3 + 1;
11   a[2] = tem3 + 2;
12   a[3] = tem3 + 3;
13   return tem1;
14 }
15