aboutsummaryrefslogtreecommitdiffstats
path: root/src/translation/HTLgen.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-07-07 16:00:58 +0100
committerYann Herklotz <git@yannherklotz.com>2020-07-07 16:00:58 +0100
commite63fef0613ed9e497279ae47b746413a093e9530 (patch)
tree09d4ec7e4d72ab2ea99d9b6ae9d5f03c05fe3bae /src/translation/HTLgen.v
parentfcb129725a68a052a079f882396be8e28142e1e0 (diff)
downloadvericert-kvx-e63fef0613ed9e497279ae47b746413a093e9530.tar.gz
vericert-kvx-e63fef0613ed9e497279ae47b746413a093e9530.zip
Finished transl_cond
Diffstat (limited to 'src/translation/HTLgen.v')
-rw-r--r--src/translation/HTLgen.v4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/translation/HTLgen.v b/src/translation/HTLgen.v
index 9f39edb..e0f860e 100644
--- a/src/translation/HTLgen.v
+++ b/src/translation/HTLgen.v
@@ -271,8 +271,6 @@ Definition translate_comparison_imm (c : Integers.comparison) (args : list reg)
Definition translate_comparisonu (c : Integers.comparison) (args : list reg) : mon expr :=
match c, args with
- | Integers.Ceq, r1::r2::nil => ret (bop Veq r1 r2)
- | Integers.Cne, r1::r2::nil => ret (bop Vne r1 r2)
| Integers.Clt, r1::r2::nil => ret (bop Vltu r1 r2)
| Integers.Cgt, r1::r2::nil => ret (bop Vgtu r1 r2)
| Integers.Cle, r1::r2::nil => ret (bop Vleu r1 r2)
@@ -283,8 +281,6 @@ Definition translate_comparisonu (c : Integers.comparison) (args : list reg) : m
Definition translate_comparison_immu (c : Integers.comparison) (args : list reg) (i: Integers.int)
: mon expr :=
match c, args with
- | Integers.Ceq, r1::nil => ret (boplit Veq r1 i)
- | Integers.Cne, r1::nil => ret (boplit Vne r1 i)
| Integers.Clt, r1::nil => ret (boplit Vltu r1 i)
| Integers.Cgt, r1::nil => ret (boplit Vgtu r1 i)
| Integers.Cle, r1::nil => ret (boplit Vleu r1 i)