derive access relations of call expressions from function summary
[pet.git] / tests / call4.c
blobaadad4b201a87a9f43cd3c6b909b1079d2443578
1 int f(int);
3 void foo(int a[static 1])
5 int t = a[0];
7 if (f(t))
8 a[0] = t + 1;
11 void bar()
13 #pragma scop
14 int s;
15 foo(&s);
16 #pragma endscop