aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/cse2/storeload.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/cse2/storeload.c')
-rw-r--r--test/monniaux/cse2/storeload.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/monniaux/cse2/storeload.c b/test/monniaux/cse2/storeload.c
new file mode 100644
index 00000000..028fb835
--- /dev/null
+++ b/test/monniaux/cse2/storeload.c
@@ -0,0 +1,5 @@
+int toto(int *p, int x) {
+ p[0] = x;
+ p[1] = 3;
+ return *p;
+}