aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DwarfPrinter.mli
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-03-30 16:37:32 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-03-30 16:37:32 +0200
commitb3de120011683866149ac2a9fbd0da38e2eef96c (patch)
treeffc6998a6651539befa513adb7b9a3bf56742f3b /debug/DwarfPrinter.mli
parentb3e77f00563656357af05052da2310d546145358 (diff)
downloadcompcert-kvx-b3de120011683866149ac2a9fbd0da38e2eef96c.tar.gz
compcert-kvx-b3de120011683866149ac2a9fbd0da38e2eef96c.zip
Added more comments and fixed issue in DwarfPrinter.mli
Diffstat (limited to 'debug/DwarfPrinter.mli')
-rw-r--r--debug/DwarfPrinter.mli18
1 files changed, 18 insertions, 0 deletions
diff --git a/debug/DwarfPrinter.mli b/debug/DwarfPrinter.mli
new file mode 100644
index 00000000..9e0e6693
--- /dev/null
+++ b/debug/DwarfPrinter.mli
@@ -0,0 +1,18 @@
+(* *********************************************************************)
+(* *)
+(* The Compcert verified compiler *)
+(* *)
+(* Bernhard Schommer, AbsInt Angewandte Informatik GmbH *)
+(* *)
+(* AbsInt Angewandte Informatik GmbH. All rights reserved. This file *)
+(* is distributed under the terms of the INRIA Non-Commercial *)
+(* License Agreement. *)
+(* *)
+(* *********************************************************************)
+
+open DwarfTypes
+
+module DwarfPrinter: functor (Target: DWARF_TARGET) -> functor (DwarfAbbrevs: DWARF_ABBREVS) ->
+ sig
+ val print_debug: out_channel -> dw_entry -> unit
+ end