aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-03-10 13:35:48 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-03-10 13:35:48 +0100
commit5b05d3668571bd9b748b781b0cc29ae10f745f61 (patch)
treeaa235b80ff0666c34332be46664ae289d8afaa2c /common
parent272087e1bc62bead1d1e1bea3d64e12d013eea37 (diff)
downloadcompcert-5b05d3668571bd9b748b781b0cc29ae10f745f61.tar.gz
compcert-5b05d3668571bd9b748b781b0cc29ae10f745f61.zip
Code cleanup.
Removed some unused variables, functions etc. and resolved some problems which occur if all warnings except 3,4,9 and 29 are active. Bug 18394.
Diffstat (limited to 'common')
-rw-r--r--common/PrintAST.ml12
-rw-r--r--common/Sections.ml2
-rw-r--r--common/Switchaux.ml1
3 files changed, 6 insertions, 9 deletions
diff --git a/common/PrintAST.ml b/common/PrintAST.ml
index 39481bfb..ad3db667 100644
--- a/common/PrintAST.ml
+++ b/common/PrintAST.ml
@@ -37,18 +37,18 @@ let name_of_chunk = function
| Many64 -> "any64"
let name_of_external = function
- | EF_external(name, sg) -> sprintf "extern %S" (camlstring_of_coqstring name)
- | EF_builtin(name, sg) -> sprintf "builtin %S" (camlstring_of_coqstring name)
+ | EF_external(name, _) -> sprintf "extern %S" (camlstring_of_coqstring name)
+ | EF_builtin(name, _) -> sprintf "builtin %S" (camlstring_of_coqstring name)
| EF_vload chunk -> sprintf "volatile load %s" (name_of_chunk chunk)
| EF_vstore chunk -> sprintf "volatile store %s" (name_of_chunk chunk)
| EF_malloc -> "malloc"
| EF_free -> "free"
| EF_memcpy(sz, al) ->
sprintf "memcpy size %s align %s " (Z.to_string sz) (Z.to_string al)
- | EF_annot(text, targs) -> sprintf "annot %S" (camlstring_of_coqstring text)
- | EF_annot_val(text, targ) -> sprintf "annot_val %S" (camlstring_of_coqstring text)
- | EF_inline_asm(text, sg, clob) -> sprintf "inline_asm %S" (camlstring_of_coqstring text)
- | EF_debug(kind, text, targs) ->
+ | EF_annot(text, _) -> sprintf "annot %S" (camlstring_of_coqstring text)
+ | EF_annot_val(text, _) -> sprintf "annot_val %S" (camlstring_of_coqstring text)
+ | EF_inline_asm(text, _, _) -> sprintf "inline_asm %S" (camlstring_of_coqstring text)
+ | EF_debug(kind, text, _) ->
sprintf "debug%d %S" (P.to_int kind) (extern_atom text)
let rec print_builtin_arg px oc = function
diff --git a/common/Sections.ml b/common/Sections.ml
index ec5b6412..b792581f 100644
--- a/common/Sections.ml
+++ b/common/Sections.ml
@@ -13,8 +13,6 @@
(* *)
(* *********************************************************************)
-open Camlcoq
-
(* Handling of linker sections *)
type section_name =
diff --git a/common/Switchaux.ml b/common/Switchaux.ml
index 0d4901bf..35f58aa7 100644
--- a/common/Switchaux.ml
+++ b/common/Switchaux.ml
@@ -10,7 +10,6 @@
(* *)
(* *********************************************************************)
-open Datatypes
open Camlcoq
open Switch