summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/flow.sail2
-rw-r--r--lib/vector_dec.sail2
2 files changed, 1 insertions, 3 deletions
diff --git a/lib/flow.sail b/lib/flow.sail
index 5ee9a74a..cdc6b2fd 100644
--- a/lib/flow.sail
+++ b/lib/flow.sail
@@ -11,7 +11,7 @@ therefore be included in just about every Sail specification.
val eq_unit : (unit, unit) -> bool
-val "eq_bit" : (bit, bit) -> bool
+val eq_bit = { lem : "eq", _ : "eq_bit" } : (bit, bit) -> bool
function eq_unit(_, _) = true
diff --git a/lib/vector_dec.sail b/lib/vector_dec.sail
index 8abcd218..37e10c2f 100644
--- a/lib/vector_dec.sail
+++ b/lib/vector_dec.sail
@@ -5,8 +5,6 @@ $include <flow.sail>
type bits ('n : Int) = vector('n, dec, bit)
-val eq_bit = { lem : "eq", _ : "eq_bit" } : (bit, bit) -> bool
-
val eq_bits = {
ocaml: "eq_list",
lem: "eq_vec",