aboutsummaryrefslogtreecommitdiff
path: root/kernel/cinstr.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-09-17 16:49:45 +0200
committerPierre-Marie Pédrot2018-09-17 16:49:45 +0200
commitf1482433ff225831d9937753f946cff2577b9309 (patch)
treee59614016106e1672241f93cad4389d973093aa4 /kernel/cinstr.mli
parenteb2c11bf1c367d83cc45f4679d3bf15f25142d5c (diff)
parenta8bf1cab3f21de4a350737ef5c933af1746f54a1 (diff)
Merge PR #6906: [VM] Optimize structured values
Diffstat (limited to 'kernel/cinstr.mli')
-rw-r--r--kernel/cinstr.mli4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/cinstr.mli b/kernel/cinstr.mli
index 171ca38830..dca1757b7d 100644
--- a/kernel/cinstr.mli
+++ b/kernel/cinstr.mli
@@ -9,6 +9,7 @@
(************************************************************************)
open Names
open Constr
+open Vmvalues
open Cbytecodes
(** This file defines the lambda code for the bytecode compiler. It has been
@@ -33,10 +34,11 @@ and lambda =
| Lfix of (int array * int) * fix_decl
| Lcofix of int * fix_decl (* must be in eta-expanded form *)
| Lmakeblock of int * lambda array
- | Lval of structured_constant
+ | Lval of structured_values
| Lsort of Sorts.t
| Lind of pinductive
| Lproj of Projection.Repr.t * lambda
+ | Lint of int
| Luint of uint
(* Cofixpoints have to be in eta-expanded form for their call-by-need evaluation