aboutsummaryrefslogtreecommitdiff
path: root/kernel/cbytegen.mli
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-08-18 13:07:54 +0200
committerGaëtan Gilbert2020-08-18 13:07:54 +0200
commit4ee0cedff7726a56ebd53125995a7ae131660b4a (patch)
treef5049f849a27b518f5c27298058df620a0ca38b3 /kernel/cbytegen.mli
parentaa926429727f1f6b5ef07c8912f2618d53f6d155 (diff)
Rename VM-related kernel/cfoo files to kernel/vmfoo
Diffstat (limited to 'kernel/cbytegen.mli')
-rw-r--r--kernel/cbytegen.mli31
1 files changed, 0 insertions, 31 deletions
diff --git a/kernel/cbytegen.mli b/kernel/cbytegen.mli
deleted file mode 100644
index d5ea2509ef..0000000000
--- a/kernel/cbytegen.mli
+++ /dev/null
@@ -1,31 +0,0 @@
-(************************************************************************)
-(* * The Coq Proof Assistant / The Coq Development Team *)
-(* v * Copyright INRIA, CNRS and contributors *)
-(* <O___,, * (see version control and CREDITS file for authors & dates) *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(* * (see LICENSE file for the text of the license) *)
-(************************************************************************)
-
-open Cbytecodes
-open Cemitcodes
-open Constr
-open Declarations
-open Environ
-
-(** Should only be used for monomorphic terms *)
-val compile : fail_on_error:bool ->
- ?universes:int -> env -> constr -> (bytecodes * bytecodes * fv) option
-(** init, fun, fv *)
-
-val compile_constant_body : fail_on_error:bool ->
- env -> universes -> (Constr.t Mod_subst.substituted, 'opaque) constant_def ->
- body_code option
-
-(** Shortcut of the previous function used during module strengthening *)
-
-val compile_alias : Names.Constant.t -> body_code
-
-(** Dump the bytecode after compilation (for debugging purposes) *)
-val dump_bytecode : bool ref