summaryrefslogtreecommitdiff
path: root/lib/smt.sail
diff options
context:
space:
mode:
authorAlasdair Armstrong2019-01-10 17:10:19 +0000
committerAlasdair Armstrong2019-01-10 17:10:19 +0000
commit05e6058795e71cf1543e282752cbf95e471894cc (patch)
tree4fb77659a0234ccfe12ce955e5048970fb73f6cb /lib/smt.sail
parenteb837a0ae70ef5dc8a2a3a28d59a736c57a952b3 (diff)
Fixes so 8.5 with vector instructions compiles to C
Diffstat (limited to 'lib/smt.sail')
-rw-r--r--lib/smt.sail2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smt.sail b/lib/smt.sail
index c57f7bd1..680898a3 100644
--- a/lib/smt.sail
+++ b/lib/smt.sail
@@ -9,7 +9,7 @@ val div = {
lem: "integerDiv",
c: "tdiv_int",
coq: "div_with_eq"
-} : forall 'n 'm. (atom('n), atom('m)) -> {'o, 'o == div('n, 'm). atom('o)}
+} : forall 'n 'm. (atom('n), atom('m)) -> atom(div('n, 'm)) // {'o, 'o == div('n, 'm). atom('o)}
overload operator / = {div}