aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/sort/insertion.h
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2018-04-17 15:33:14 +0200
committerCyril SIX <cyril.six@kalray.eu>2018-04-17 15:33:14 +0200
commit1b8cf73abc25b1bb167db770a622704f0d672691 (patch)
tree50582ad9bde220947d3b30d3262d314fb27bb554 /test/mppa/sort/insertion.h
parenteb1e1c79fa3fc882b68c67d781f7b64e74e00828 (diff)
downloadcompcert-kvx-1b8cf73abc25b1bb167db770a622704f0d672691.tar.gz
compcert-kvx-1b8cf73abc25b1bb167db770a622704f0d672691.zip
MPPA - added merge sort + corrected bug in insertion + testing them together
Diffstat (limited to 'test/mppa/sort/insertion.h')
-rw-r--r--test/mppa/sort/insertion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mppa/sort/insertion.h b/test/mppa/sort/insertion.h
index 135b3bc1..6e37c5fe 100644
--- a/test/mppa/sort/insertion.h
+++ b/test/mppa/sort/insertion.h
@@ -1,6 +1,6 @@
#ifndef __INSERTION_H__
#define __INSERTION_H__
-int insert_sort(uint64_t *res, const uint64_t *T, int size);
+int insert_sort(uint64_t *res, const uint64_t *T);
#endif // __INSERTION_H__