aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsm.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-09-10 13:42:43 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-09-10 13:42:43 +0200
commitcc6ce2bf9b8be54375ea3285ea2fa658bc108df0 (patch)
tree6e7fee8d65b6a180447267da9a95a93827443caf /backend/PrintAsm.ml
parent861292a6c5e58b4f78bef207c717b801b3fc1fed (diff)
downloadcompcert-kvx-cc6ce2bf9b8be54375ea3285ea2fa658bc108df0.tar.gz
compcert-kvx-cc6ce2bf9b8be54375ea3285ea2fa658bc108df0.zip
Revert "Startet implementation of new Debug interface."
This reverts commit 861292a6c5e58b4f78bef207c717b801b3fc1fed.
Diffstat (limited to 'backend/PrintAsm.ml')
-rw-r--r--backend/PrintAsm.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/PrintAsm.ml b/backend/PrintAsm.ml
index b88a3d50..29409b32 100644
--- a/backend/PrintAsm.ml
+++ b/backend/PrintAsm.ml
@@ -134,12 +134,12 @@ module Printer(Target:TARGET) =
let print_program oc p db =
let module Target = (val (sel_target ()):TARGET) in
let module Printer = Printer(Target) in
- Debug.reset_filenames ();
+ reset_filenames ();
print_version_and_options oc Target.comment;
Target.print_prologue oc;
List.iter (Printer.print_globdef oc) p.prog_defs;
Target.print_epilogue oc;
- Debug.close_filenames ();
+ close_filenames ();
if !Clflags.option_g && Configuration.advanced_debug then
begin
match db with