aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/bitsliced-aes
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-03-27 10:11:11 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-03-27 10:11:11 +0100
commitcea4f858490678f6cc1eeddec04f7ed5dc9f5c19 (patch)
tree02224af8848e94436566be4e7fa3eededa215fea /test/monniaux/bitsliced-aes
parent61639db3a2b958240d764befbb22213cb77284af (diff)
downloadcompcert-kvx-cea4f858490678f6cc1eeddec04f7ed5dc9f5c19.tar.gz
compcert-kvx-cea4f858490678f6cc1eeddec04f7ed5dc9f5c19.zip
don't penalize x86 CompCert
Diffstat (limited to 'test/monniaux/bitsliced-aes')
-rw-r--r--test/monniaux/bitsliced-aes/bs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monniaux/bitsliced-aes/bs.c b/test/monniaux/bitsliced-aes/bs.c
index 5928cce5..8df53391 100644
--- a/test/monniaux/bitsliced-aes/bs.c
+++ b/test/monniaux/bitsliced-aes/bs.c
@@ -11,7 +11,7 @@ static inline word_t compcert_ternary(word_t x, word_t v0, word_t v1) {
return compcert_ternary_signedl(x, v0, v1);
}
-#if defined(__COMPCERT__)
+#if defined(__K1C__)
#define TERNARY(x, v0, v1) compcert_ternary((x), (v0), (v1))
#else
#define TERNARY(x, v0, v1) ((x) ? (v1) : (v0))