aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DwarfPrinter.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2014-11-14 13:42:11 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2014-11-14 13:42:11 +0100
commit5725e8d4ffcc9bde14b0c46fcaba83a9d84c7ddb (patch)
treecd86e29713c34910fa768ad5cf2baea58f8e87af /debug/DwarfPrinter.ml
parentf5577078213c59c3ea3c127bb18f60a59afd3c3c (diff)
downloadcompcert-kvx-5725e8d4ffcc9bde14b0c46fcaba83a9d84c7ddb.tar.gz
compcert-kvx-5725e8d4ffcc9bde14b0c46fcaba83a9d84c7ddb.zip
More functionality for the Printer.
Diffstat (limited to 'debug/DwarfPrinter.ml')
-rw-r--r--debug/DwarfPrinter.ml5
1 files changed, 4 insertions, 1 deletions
diff --git a/debug/DwarfPrinter.ml b/debug/DwarfPrinter.ml
index 270e4025..0c5fc96f 100644
--- a/debug/DwarfPrinter.ml
+++ b/debug/DwarfPrinter.ml
@@ -308,6 +308,9 @@ module DwarfPrinter(Defs:DWARF_DEFS) :
let print_debug oc entry =
compute_abbrv entry;
- print_abbrv oc
+ print_abbrv oc;
+ info_section_start oc;
+
+ info_section_end oc
end)