summaryrefslogtreecommitdiff
path: root/checklink/Frameworks.ml
diff options
context:
space:
mode:
Diffstat (limited to 'checklink/Frameworks.ml')
-rw-r--r--checklink/Frameworks.ml8
1 files changed, 0 insertions, 8 deletions
diff --git a/checklink/Frameworks.ml b/checklink/Frameworks.ml
index 35144dc..ec11412 100644
--- a/checklink/Frameworks.ml
+++ b/checklink/Frameworks.ml
@@ -84,9 +84,6 @@ type s_framework = {
as we learn more about the contents of the symbol.
*)
ident_to_sym_ndx: (int list) PosMap.t;
- (** CompCert generates stubs for some functions, which we will aggregate as we
- discover them. *)
- stub_ident_to_vaddr: int32 PosMap.t;
(** This structure is imported from CompCert's .sdump, and describes each
atom. *)
atoms: (ident, C2C.atom_info) Hashtbl.t;
@@ -140,11 +137,6 @@ let ident_to_sym_ndx = {
set = (fun i sf -> { sf with ident_to_sym_ndx = i });
}
-let stub_ident_to_vaddr = {
- get = (fun sf -> sf.stub_ident_to_vaddr);
- set = (fun i sf -> { sf with stub_ident_to_vaddr = i });
-}
-
(** Adds a range to the checked bytes list.
*)
let add_range (start: int32) (length: int32) (align: int) (bcd: byte_chunk_desc)