aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsm.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-07-06 09:36:01 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2019-07-06 09:36:01 +0200
commit39c55cc00a35af8677ce3e0661e053e57081b183 (patch)
tree1babdf8007d978d8143fef80435d388b22afc0b1 /backend/PrintAsm.ml
parent68e22ac70b911047e01f9917a343b7f402a0791f (diff)
downloadcompcert-no-pervasives.tar.gz
compcert-no-pervasives.zip
Clarify "open" statementsno-pervasives
OCaml 4.08.0 has stricter warnings concerning open statements that shadow module names.
Diffstat (limited to 'backend/PrintAsm.ml')
-rw-r--r--backend/PrintAsm.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/backend/PrintAsm.ml b/backend/PrintAsm.ml
index dd428808..155f5e55 100644
--- a/backend/PrintAsm.ml
+++ b/backend/PrintAsm.ml
@@ -13,7 +13,6 @@
open AST
open Camlcoq
-open DwarfPrinter
open PrintAsmaux
open Printf
open Sections
@@ -177,7 +176,7 @@ module Printer(Target:TARGET) =
let address = Target.address
end
- module DebugPrinter = DwarfPrinter (DwarfTarget)
+ module DebugPrinter = DwarfPrinter.DwarfPrinter (DwarfTarget)
end
let print_program oc p =