aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2018-11-23 18:05:06 +0100
committerCyril SIX <cyril.six@kalray.eu>2018-11-23 18:05:06 +0100
commit0b9d1deb832dc93ce381f15f8e9774973f45e56e (patch)
tree64a22fe701a41d60698608e84cf5607f565827e8 /test/mppa
parentbe51963b3a2fca4e50059bcf1776c7b5b6bc5b63 (diff)
downloadcompcert-kvx-0b9d1deb832dc93ce381f15f8e9774973f45e56e.tar.gz
compcert-kvx-0b9d1deb832dc93ce381f15f8e9774973f45e56e.zip
Fixed andd test not consistent with the rest
Diffstat (limited to 'test/mppa')
-rw-r--r--test/mppa/instr/andd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mppa/instr/andd.c b/test/mppa/instr/andd.c
index 4f503764..5a2c7863 100644
--- a/test/mppa/instr/andd.c
+++ b/test/mppa/instr/andd.c
@@ -1,5 +1,5 @@
#include "framework.h"
BEGIN_TEST(long long)
- return a&b;
+ c = a&b;
END_TEST()