aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DwarfTypes.mli
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-04-23 13:42:36 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2019-04-23 13:42:36 +0200
commit23f871b3faf89679414485c438ed211151bd99ce (patch)
treeb1a3c480ca621b8c7dfecb430507e5ca0e72e88b /debug/DwarfTypes.mli
parent04b822ca7eaf59a967b9b8f700104b78e77e5c98 (diff)
parent65ac4adf1fb1c2642a8e69d098049dfa2ab90e92 (diff)
downloadcompcert-23f871b3faf89679414485c438ed211151bd99ce.tar.gz
compcert-23f871b3faf89679414485c438ed211151bd99ce.zip
Problems with Dwarf ranges (#159)
Merge of branch dwarf-ranges
Diffstat (limited to 'debug/DwarfTypes.mli')
-rw-r--r--debug/DwarfTypes.mli6
1 files changed, 4 insertions, 2 deletions
diff --git a/debug/DwarfTypes.mli b/debug/DwarfTypes.mli
index 23aba448..5a2bce3b 100644
--- a/debug/DwarfTypes.mli
+++ b/debug/DwarfTypes.mli
@@ -272,9 +272,11 @@ type location_entry =
}
type dw_locations = constant option * location_entry list
-type range_entry = (address * address) list
+type range_entry =
+ | AddressRange of (address * address) list
+ | OffsetRange of reference * (address * address) list
-type dw_ranges = range_entry list
+type dw_ranges = (int * range_entry) list
type dw_string = (int * string) list