aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/mmult
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2018-04-26 16:44:37 +0200
committerCyril SIX <cyril.six@kalray.eu>2018-04-26 16:44:37 +0200
commit155745466c01ad9485027689409ab986f7ebb207 (patch)
tree7c66f830e5f6890f9a7bfefef6165f93c80fa4b6 /test/mppa/mmult
parenta2cc41ebb00e45792fc2d0ef3e25f77994cf826f (diff)
downloadcompcert-kvx-155745466c01ad9485027689409ab986f7ebb207.tar.gz
compcert-kvx-155745466c01ad9485027689409ab986f7ebb207.zip
MPPA - mmult and sort Makefile now check on ccomp version
Diffstat (limited to 'test/mppa/mmult')
-rw-r--r--test/mppa/mmult/Makefile7
-rw-r--r--test/mppa/mmult/mmult.c2
2 files changed, 5 insertions, 4 deletions
diff --git a/test/mppa/mmult/Makefile b/test/mppa/mmult/Makefile
index edea61ae..3297dfe4 100644
--- a/test/mppa/mmult/Makefile
+++ b/test/mppa/mmult/Makefile
@@ -1,4 +1,5 @@
PRNG=../lib/prng.c
+CCOMP=../../../ccomp
ALL= mmult-test-x86 mmult-test-k1c\
@@ -16,11 +17,11 @@ test-x86: mmult.c $(PRNG)
test-k1c: mmult.c $(PRNG)
k1-gcc -g -O2 -std=c99 $^ -o $@
-%.s: %.c
- ccomp -O2 -S $< -o $@
+%.s: %.c $(CCOMP)
+ ccomp -O0 -g -S $< -o $@
test-ccomp: mmult.s $(subst .c,.s,$(PRNG))
- k1-gcc $^ -o $@
+ k1-gcc $^ -g -o $@
.PHONY:
unittest: unittest-x86 unittest-k1c
diff --git a/test/mppa/mmult/mmult.c b/test/mppa/mmult/mmult.c
index dcbcfe17..b674ca80 100644
--- a/test/mppa/mmult/mmult.c
+++ b/test/mppa/mmult/mmult.c
@@ -4,7 +4,7 @@
#define __UNIT_TEST_MMULT__
#ifdef __UNIT_TEST_MMULT__
-#define SIZE 50
+#define SIZE 10
#else
#include "test.h"
#endif