summaryrefslogtreecommitdiff
path: root/src/Assumed.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/Assumed.ml')
-rw-r--r--src/Assumed.ml9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Assumed.ml b/src/Assumed.ml
index 38e539b4..2bf7cd7c 100644
--- a/src/Assumed.ml
+++ b/src/Assumed.ml
@@ -29,9 +29,10 @@
```
*)
+open Names
+open TypesUtils
module T = Types
module A = CfimAst
-open TypesUtils
module Sig = struct
(** A few utilities *)
@@ -227,7 +228,7 @@ module Sig = struct
let vec_index_mut_sig : A.fun_sig = vec_index_gen_sig true
end
-type assumed_info = A.assumed_fun_id * A.fun_sig * bool * Identifiers.name
+type assumed_info = A.assumed_fun_id * A.fun_sig * bool * name
(** The list of assumed functions and all their information:
- their signature
@@ -271,9 +272,9 @@ let get_assumed_sig (id : A.assumed_fun_id) : A.fun_sig =
let _, sg, _, _ = get_assumed_info id in
sg
-let get_assumed_name (id : A.assumed_fun_id) : Identifiers.fun_name =
+let get_assumed_name (id : A.assumed_fun_id) : fun_name =
let _, _, _, name = get_assumed_info id in
- Identifiers.Regular name
+ Regular name
let assumed_is_monadic (id : A.assumed_fun_id) : bool =
let _, _, b, _ = get_assumed_info id in