aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DwarfTypes.mli
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-02 00:07:04 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-02 00:07:04 +0200
commita0bef6920c64f2d0e51d4bdce2f08c927373fb66 (patch)
tree9bdd722b483ca10c8f0d6249cd1af82d12f69f5c /debug/DwarfTypes.mli
parent2d96b7927719c3b61fe564e8ab273a1b154912a5 (diff)
downloadcompcert-kvx-a0bef6920c64f2d0e51d4bdce2f08c927373fb66.tar.gz
compcert-kvx-a0bef6920c64f2d0e51d4bdce2f08c927373fb66.zip
Started implementation of gnu compatible debug information.
Diffstat (limited to 'debug/DwarfTypes.mli')
-rw-r--r--debug/DwarfTypes.mli8
1 files changed, 7 insertions, 1 deletions
diff --git a/debug/DwarfTypes.mli b/debug/DwarfTypes.mli
index 6c0af52b..96c763b3 100644
--- a/debug/DwarfTypes.mli
+++ b/debug/DwarfTypes.mli
@@ -248,7 +248,13 @@ type location_entry =
}
type dw_locations = int * location_entry list
-type debug_entries = (string * int * dw_entry * dw_locations) list
+type diab_entries = (string * int * dw_entry * dw_locations) list
+
+type gnu_entries = dw_entry * dw_locations
+
+type debug_entries =
+ | Diab of diab_entries
+ | Gnu of gnu_entries
(* The target specific functions for printing the debug information *)
module type DWARF_TARGET=