summaryrefslogtreecommitdiff
path: root/src/InterpreterStatements.ml
diff options
context:
space:
mode:
authorSon Ho2022-01-15 21:00:03 +0100
committerSon Ho2022-01-15 21:00:03 +0100
commit9711789ae50ddcf2d2f4181044ba4f5eeb139ec8 (patch)
tree41577933492762a2c12aa37e9c87e01ce8310c99 /src/InterpreterStatements.ml
parentad90d11e8b933202ca2be1af04a768c8077e8e2d (diff)
Start working on Collections.ml
Diffstat (limited to '')
-rw-r--r--src/InterpreterStatements.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/InterpreterStatements.ml b/src/InterpreterStatements.ml
index 885d1bdc..1b06dd7f 100644
--- a/src/InterpreterStatements.ml
+++ b/src/InterpreterStatements.ml
@@ -829,7 +829,7 @@ and eval_local_function_call_concrete (config : C.config) (ctx : C.eval_ctx)
let ctx = C.ctx_push_var ctx ret_var (mk_bottom ret_var.var_ty) in
(* 2. Push the input values *)
- let input_locals, locals = Utils.list_split_at locals def.A.arg_count in
+ let input_locals, locals = Collections.List.split_at locals def.A.arg_count in
let inputs = List.combine input_locals args in
(* Note that this function checks that the variables and their values
have the same type (this is important) *)