aboutsummaryrefslogtreecommitdiffstats
path: root/debug/Dwarfgen.ml
diff options
context:
space:
mode:
Diffstat (limited to 'debug/Dwarfgen.ml')
-rw-r--r--debug/Dwarfgen.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/Dwarfgen.ml b/debug/Dwarfgen.ml
index 65cd4951..30e44e52 100644
--- a/debug/Dwarfgen.ml
+++ b/debug/Dwarfgen.ml
@@ -583,11 +583,11 @@ let gnu_string_entry s =
Simple_string s
else
try
- Offset_string (Hashtbl.find string_table s)
+ Offset_string ((Hashtbl.find string_table s),s)
with Not_found ->
let id = next_id () in
Hashtbl.add string_table s id;
- Offset_string id
+ Offset_string (id,s)
let gen_gnu_debug_info sec_name var_section : debug_entries =