summaryrefslogtreecommitdiff
path: root/src/Interpreter.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/Interpreter.ml')
-rw-r--r--src/Interpreter.ml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Interpreter.ml b/src/Interpreter.ml
index f6ae268d..702aeea6 100644
--- a/src/Interpreter.ml
+++ b/src/Interpreter.ml
@@ -1,4 +1,5 @@
open Cps
+open FunIdentifier
open InterpreterUtils
open InterpreterProjectors
open InterpreterBorrows
@@ -255,9 +256,9 @@ module Test = struct
environment.
*)
let test_unit_function (config : C.partial_config) (m : M.llbc_module)
- (fid : A.FunDeclId.id) : unit =
+ (fid : FunDeclId.id) : unit =
(* Retrieve the function declaration *)
- let fdef = A.FunDeclId.nth m.functions fid in
+ let fdef = FunDeclId.nth m.functions fid in
let body = Option.get fdef.body in
(* Debug *)