aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-03-21 08:48:20 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-03-21 08:48:20 +0100
commit01e32a075023ce7b037d42d048b1904ba3d9a82b (patch)
tree2d01f3855234e6eb945b929e489232001c406592 /debug
parent093e0ea167fde39429bf4bd3fc693a232af0d093 (diff)
parent1fdca8371317e656cb08eaec3adb4596d6447e9b (diff)
downloadcompcert-kvx-01e32a075023ce7b037d42d048b1904ba3d9a82b.tar.gz
compcert-kvx-01e32a075023ce7b037d42d048b1904ba3d9a82b.zip
Merge branch 'master' into cleanup
Diffstat (limited to 'debug')
-rw-r--r--debug/DebugInformation.ml10
1 files changed, 0 insertions, 10 deletions
diff --git a/debug/DebugInformation.ml b/debug/DebugInformation.ml
index 828759a7..471318af 100644
--- a/debug/DebugInformation.ml
+++ b/debug/DebugInformation.ml
@@ -27,8 +27,6 @@ let next_id () =
let nid = !id in
incr id; nid
-let reset_id () =
- id := 0
(* Auximilary functions *)
let list_replace c f l =
@@ -601,14 +599,6 @@ let section_to_string = function
| Section_user (n,_,_) -> n
| _ -> ".text"
-let add_compilation_section_start sec addr =
- let sec = section_to_string sec in
- Hashtbl.add compilation_section_start sec addr
-
-let add_compilation_section_end sec addr =
- let sec = section_to_string sec in
- Hashtbl.add compilation_section_end sec addr
-
let add_diab_info sec addr1 add2 addr3 =
let sec' = section_to_string sec in
Hashtbl.add compilation_section_start sec' addr3;