aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2020-02-20 09:41:16 +0100
committerXavier Leroy <xavierleroy@users.noreply.github.com>2020-02-21 13:29:39 +0100
commit3bffda879e214345635e575a696e8f184bef0e55 (patch)
treea8bc2d0c0be60b597f4add91fccef6df58eb79a1 /backend
parent8f8a4135be4786a04b781bdf669e642d8383d91a (diff)
downloadcompcert-3bffda879e214345635e575a696e8f184bef0e55.tar.gz
compcert-3bffda879e214345635e575a696e8f184bef0e55.zip
Cosmetic: in OCaml code, write "open! Module" instead of "open !Module"
"open!" is the form used in the examples in the OCaml manual. Based on a quick poll it seems to be the preferred form of the OCaml core dev team.
Diffstat (limited to 'backend')
-rw-r--r--backend/Inliningaux.ml2
-rw-r--r--backend/PrintCminor.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/backend/Inliningaux.ml b/backend/Inliningaux.ml
index 842e0c93..2e83eb0c 100644
--- a/backend/Inliningaux.ml
+++ b/backend/Inliningaux.ml
@@ -16,7 +16,7 @@ open FSetAVL
open Maps
open Op
open Ordered
-open !RTL
+open! RTL
module PSet = Make(OrderedPositive)
diff --git a/backend/PrintCminor.ml b/backend/PrintCminor.ml
index b77c5645..c9a6d399 100644
--- a/backend/PrintCminor.ml
+++ b/backend/PrintCminor.ml
@@ -16,7 +16,7 @@
(** Pretty-printer for Cminor *)
open Format
-open !Camlcoq
+open! Camlcoq
open Integers
open AST
open PrintAST