aboutsummaryrefslogtreecommitdiff
path: root/kernel/vmlambda.mli
diff options
context:
space:
mode:
authorGuillaume Melquiond2020-08-30 09:05:39 +0200
committerGuillaume Melquiond2020-11-13 15:13:23 +0100
commitfdd16113a042170022dce276e53e7a3308c0451c (patch)
tree5a9972375ade00812092b648826e33e7b7b90d8a /kernel/vmlambda.mli
parent930e51c23f5a8778af02f7a971a404860d713346 (diff)
Remove unchecked arithmetic operations from VM, as they are not used.
Diffstat (limited to 'kernel/vmlambda.mli')
-rw-r--r--kernel/vmlambda.mli3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/vmlambda.mli b/kernel/vmlambda.mli
index bd11c2667f..8ae7e05f72 100644
--- a/kernel/vmlambda.mli
+++ b/kernel/vmlambda.mli
@@ -12,8 +12,7 @@ type lambda =
| Llet of Name.t Context.binder_annot * lambda * lambda
| Lapp of lambda * lambda array
| Lconst of pconstant
- | Lprim of pconstant option * CPrimitives.t * lambda array
- (* No check if None *)
+ | Lprim of pconstant * CPrimitives.t * lambda array
| Lcase of case_info * reloc_table * lambda * lambda * lam_branches
| Lif of lambda * lambda * lambda
| Lfix of (int array * int) * fix_decl