aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/cemitcodes.mli
diff options
context:
space:
mode:
authorGravatar sacerdot <sacerdot@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-11-16 15:49:08 +0000
committerGravatar sacerdot <sacerdot@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-11-16 15:49:08 +0000
commitb01b06d3a843c97adc6c0a0621b8d681c10fa6fe (patch)
treed3f90b1dc590ffd917090290d9fd03e63c094a49 /kernel/cemitcodes.mli
parentd6c204c70c3b89b5bda4e7779cc4a20b5fa3f63f (diff)
Names.substitution (and related functions) and Term.subst_mps moved to
the new module kernel/mod_subst.ml. MOTIVATION: mod_subst is compiled after kernel/term.ml; thus it is now possible to define substitutions that also delta-expand constants (by associating the delta-expanded form to the constant name). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6304 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/cemitcodes.mli')
-rw-r--r--kernel/cemitcodes.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/cemitcodes.mli b/kernel/cemitcodes.mli
index 438da15dd..ca6da65e1 100644
--- a/kernel/cemitcodes.mli
+++ b/kernel/cemitcodes.mli
@@ -8,7 +8,7 @@ type reloc_info =
type patch = reloc_info * int
(* A virer *)
-val subst_patch : substitution -> patch -> patch
+val subst_patch : Mod_subst.substitution -> patch -> patch
type emitcodes
@@ -18,7 +18,7 @@ val patch_int : emitcodes -> (*pos*)int -> int -> unit
type to_patch = emitcodes * (patch list) * fv
-val subst_to_patch : substitution -> to_patch -> to_patch
+val subst_to_patch : Mod_subst.substitution -> to_patch -> to_patch
type body_code =
| BCdefined of bool*to_patch
@@ -34,7 +34,7 @@ val force : to_patch_substituted -> body_code
val is_boxed : to_patch_substituted -> bool
-val subst_to_patch_subst : substitution -> to_patch_substituted -> to_patch_substituted
+val subst_to_patch_subst : Mod_subst.substitution -> to_patch_substituted -> to_patch_substituted
val to_memory : bytecodes * bytecodes * fv -> to_patch
(* init code, fun code, fv *)