aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/sort/selection.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/selection.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/selection.h')
-rw-r--r--test/mppa/sort/selection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mppa/sort/selection.h b/test/mppa/sort/selection.h
index b2b4aebe..92a6b461 100644
--- a/test/mppa/sort/selection.h
+++ b/test/mppa/sort/selection.h
@@ -1,6 +1,6 @@
#ifndef __SELECTION_H__
#define __SELECTION_H__
-int selection_sort(uint64_t *res, const uint64_t *T, int size);
+int select_sort(uint64_t *res, const uint64_t *T);
#endif // __SELECTION_H__