aboutsummaryrefslogtreecommitdiffstats
path: root/cfrontend/C2C.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-03-11 08:48:31 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-03-11 08:48:31 +0100
commitbac2a0854ea51217690bc6f225da62053ed7ac06 (patch)
tree752e3b627d70450f544c182b06a70f803ef73965 /cfrontend/C2C.ml
parent7247e4bb85d50834983bc71e6415fe1bf065aa46 (diff)
downloadcompcert-bac2a0854ea51217690bc6f225da62053ed7ac06.tar.gz
compcert-bac2a0854ea51217690bc6f225da62053ed7ac06.zip
Removed unused parameter from is_small/rel_data.
The ofs parameter is no longer used. Adopted the proofs and ml code using it. Bug 18394
Diffstat (limited to 'cfrontend/C2C.ml')
-rw-r--r--cfrontend/C2C.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/cfrontend/C2C.ml b/cfrontend/C2C.ml
index c3e07995..d29bb295 100644
--- a/cfrontend/C2C.ml
+++ b/cfrontend/C2C.ml
@@ -76,13 +76,13 @@ let atom_sections a =
with Not_found ->
[]
-let atom_is_small_data a _ =
+let atom_is_small_data a =
try
(Hashtbl.find decl_atom a).a_access = Sections.Access_near
with Not_found ->
false
-let atom_is_rel_data a _ =
+let atom_is_rel_data a =
try
(Hashtbl.find decl_atom a).a_access = Sections.Access_far
with Not_found ->
@@ -478,7 +478,7 @@ let checkFunctionType env tres targs =
l
end
end
-
+
let rec convertTyp env t =
match t with
| C.TVoid _ -> Tvoid