aboutsummaryrefslogtreecommitdiff
path: root/kernel/nativevalues.mli
diff options
context:
space:
mode:
authorMaxime Dénès2018-06-05 23:12:47 +0200
committerMaxime Dénès2018-06-05 23:12:47 +0200
commitaf902fa028f8ceb152d9add198e7dd490a4394ca (patch)
tree002f7dde0d60cf865d5e643204827eee132299ee /kernel/nativevalues.mli
parent1c67e29e735ab1e7bb121304f710ef48a23a8b9b (diff)
parente1e7888ac4519f4b7470cc8469f9fd924514e352 (diff)
Merge PR #7679: Clean native compilation of primitive projections
Diffstat (limited to 'kernel/nativevalues.mli')
-rw-r--r--kernel/nativevalues.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/nativevalues.mli b/kernel/nativevalues.mli
index 4a58a3c7da..649853f069 100644
--- a/kernel/nativevalues.mli
+++ b/kernel/nativevalues.mli
@@ -54,7 +54,7 @@ type atom =
| Aprod of Name.t * t * (t -> t)
| Ameta of metavariable * t
| Aevar of Evar.t * t (* type *) * t array (* arguments *)
- | Aproj of Constant.t * accumulator
+ | Aproj of (inductive * int) * accumulator
(* Constructors *)
@@ -71,7 +71,7 @@ val mk_fix_accu : rec_pos -> int -> t array -> t array -> t
val mk_cofix_accu : int -> t array -> t array -> t
val mk_meta_accu : metavariable -> t
val mk_evar_accu : Evar.t -> t -> t array -> t
-val mk_proj_accu : Constant.t -> accumulator -> t
+val mk_proj_accu : (inductive * int) -> accumulator -> t
val upd_cofix : t -> t -> unit
val force_cofix : t -> t
val mk_const : tag -> t