summaryrefslogtreecommitdiff
path: root/compiler/InterpreterUtils.ml
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/InterpreterUtils.ml')
-rw-r--r--compiler/InterpreterUtils.ml14
1 files changed, 0 insertions, 14 deletions
diff --git a/compiler/InterpreterUtils.ml b/compiler/InterpreterUtils.ml
index 4ee11cbd..a10ba89e 100644
--- a/compiler/InterpreterUtils.ml
+++ b/compiler/InterpreterUtils.ml
@@ -5,7 +5,6 @@ open Contexts
open LlbcAst
open Utils
open TypesUtils
-open Cps
open Errors
(* TODO: we should probably rename the file to ContextsUtils *)
@@ -15,19 +14,6 @@ let log = Logging.interpreter_log
(** Some utilities *)
-(** Auxiliary function - call a function which requires a continuation,
- and return the let context given to the continuation *)
-let get_cf_ctx_no_synth (meta : Meta.meta) (f : cm_fun) (ctx : eval_ctx) :
- eval_ctx =
- let nctx = ref None in
- let cf ctx =
- sanity_check __FILE__ __LINE__ (!nctx = None) meta;
- nctx := Some ctx;
- None
- in
- let _ = f cf ctx in
- Option.get !nctx
-
let eval_ctx_to_string_no_filter = Print.Contexts.eval_ctx_to_string_no_filter
let eval_ctx_to_string = Print.Contexts.eval_ctx_to_string
let name_to_string = Print.EvalCtx.name_to_string