summaryrefslogtreecommitdiff
path: root/src/PureToExtract.ml
diff options
context:
space:
mode:
authorSon Ho2022-04-26 18:03:03 +0200
committerSon Ho2022-04-26 18:03:03 +0200
commit732e3305cba3a628d9408a048978151e4ef2fcc2 (patch)
treeeb2fa77c7aeaccae62bac4e3dc0b0610148844f9 /src/PureToExtract.ml
parentbe53607433804d78f0e42d42f8cb1ecdeea087b3 (diff)
Introduce the App expression, and make progress updating the code
Diffstat (limited to 'src/PureToExtract.ml')
-rw-r--r--src/PureToExtract.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PureToExtract.ml b/src/PureToExtract.ml
index bbcf2cec..1c530011 100644
--- a/src/PureToExtract.ml
+++ b/src/PureToExtract.ml
@@ -333,7 +333,7 @@ type extraction_ctx = {
(** Extraction context.
Note that the extraction context contains information coming from the
- CFIM AST (not only the pure AST). This is useful for naming, for instance:
+ LLBC AST (not only the pure AST). This is useful for naming, for instance:
we use the region information to generate the names of the backward
functions, etc.
*)
@@ -570,7 +570,7 @@ let ctx_add_decrases_clause (def : fun_decl) (ctx : extraction_ctx) :
let ctx_add_fun_decl (trans_group : bool * pure_fun_translation)
(def : fun_decl) (ctx : extraction_ctx) : extraction_ctx =
- (* Lookup the CFIM def to compute the region group information *)
+ (* Lookup the LLBC def to compute the region group information *)
let def_id = def.def_id in
let llbc_def =
FunDeclId.Map.find def_id ctx.trans_ctx.fun_context.fun_decls