aboutsummaryrefslogtreecommitdiffstats
path: root/cfrontend/PrintCsyntax.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2016-03-21 10:18:51 +0100
committerXavier Leroy <xavierleroy@users.noreply.github.com>2016-03-21 10:18:51 +0100
commit20eef936dce1ef98b5b422c90cc9e072fb0d75ab (patch)
tree2690be164dc36fad63fc0f42e943d0fcb0735532 /cfrontend/PrintCsyntax.ml
parentfdf4cac2439a7168bd005efbde4a1f76a00ada66 (diff)
parent01e32a075023ce7b037d42d048b1904ba3d9a82b (diff)
downloadcompcert-20eef936dce1ef98b5b422c90cc9e072fb0d75ab.tar.gz
compcert-20eef936dce1ef98b5b422c90cc9e072fb0d75ab.zip
Merge pull request #92 from AbsInt/cleanup
This PR activates more OCaml warnings and turns all warnings into errors. Also some unused functions, variables and types are removed.
Diffstat (limited to 'cfrontend/PrintCsyntax.ml')
-rw-r--r--cfrontend/PrintCsyntax.ml15
1 files changed, 6 insertions, 9 deletions
diff --git a/cfrontend/PrintCsyntax.ml b/cfrontend/PrintCsyntax.ml
index d884100b..4287f7f9 100644
--- a/cfrontend/PrintCsyntax.ml
+++ b/cfrontend/PrintCsyntax.ml
@@ -15,16 +15,13 @@
(** Pretty-printer for Csyntax *)
-open Printf
open Format
open Camlcoq
-open Datatypes
open Values
open AST
-open Globalenvs
-open Ctypes
+open !Ctypes
open Cop
-open Csyntax
+open !Csyntax
let name_unop = function
| Onotbool -> "!"
@@ -177,7 +174,7 @@ let print_pointer_hook
let print_typed_value p v ty =
match v, ty with
- | Vint n, Tint(I32, Unsigned, _) ->
+ | Vint n, Ctypes.Tint(I32, Unsigned, _) ->
fprintf p "%luU" (camlint_of_coqint n)
| Vint n, _ ->
fprintf p "%ld" (camlint_of_coqint n)
@@ -429,12 +426,12 @@ let print_function p id f =
let print_fundef p id fd =
match fd with
- | External((EF_external _ | EF_runtime _), args, res, cconv) ->
+ | Ctypes.External((EF_external _ | EF_runtime _), args, res, cconv) ->
fprintf p "extern %s;@ @ "
(name_cdecl (extern_atom id) (Tfunction(args, res, cconv)))
- | External(_, _, _, _) ->
+ | Ctypes.External(_, _, _, _) ->
()
- | Internal f ->
+ | Ctypes.Internal f ->
print_function p id f
let string_of_init id =