aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/bitsliced-tea
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-06-04 12:15:16 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-06-04 12:15:16 +0200
commit1fc26cf05b90c167d2f02599cc75b9df26e4d623 (patch)
tree160b9c44268a5b96ae1cde0e3a9589692d56ffaf /test/monniaux/bitsliced-tea
parent5feecb99712de3604f284e5934aed73f2b606659 (diff)
downloadcompcert-kvx-1fc26cf05b90c167d2f02599cc75b9df26e4d623.tar.gz
compcert-kvx-1fc26cf05b90c167d2f02599cc75b9df26e4d623.zip
remove old "ternary" stuff
Diffstat (limited to 'test/monniaux/bitsliced-tea')
-rw-r--r--test/monniaux/bitsliced-tea/bstea.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/test/monniaux/bitsliced-tea/bstea.h b/test/monniaux/bitsliced-tea/bstea.h
index 9ca4f776..15607464 100644
--- a/test/monniaux/bitsliced-tea/bstea.h
+++ b/test/monniaux/bitsliced-tea/bstea.h
@@ -5,17 +5,8 @@
#include <limits.h>
#include "bstea_wordsize.h"
-#include "../ternary.h"
-/*
+
#define TERNARY(x, v1, v0) ((x) ? (v1) : (v0))
-*/
-#if __BSTEA_WORDSIZE==64
-#define TERNARY(x, v1, v0) TERNARY64(x, v1, v0)
-#elif __BSTEA_WORDSIZE==32
-#define TERNARY(x, v1, v0) TERNARY32(x, v1, v0)
-#else
-#error What is the bit size !?
-#endif
#define TEA_ROUNDS 32