From a0bef6920c64f2d0e51d4bdce2f08c927373fb66 Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Fri, 2 Oct 2015 00:07:04 +0200 Subject: Started implementation of gnu compatible debug information. --- debug/DwarfTypes.mli | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'debug/DwarfTypes.mli') 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= -- cgit