aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/cse2/storeload.c
blob: 028fb835f49fd170593f3469d0cba42a84757005 (plain)
1
2
3
4
5
int toto(int *p, int x) {
  p[0] = x;
  p[1] = 3;
  return *p;
}