aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Ceval.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-03-15 15:07:47 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-03-15 15:07:47 +0100
commit272a5b812b72f4c3e409ccdbeaf3476d95c4b552 (patch)
tree6a8d5e75a11860b69522cef3b512b1ef5effb438 /cparser/Ceval.ml
parent2185164c1845c30ebd4118ed5bc8d339b16663a9 (diff)
downloadcompcert-kvx-272a5b812b72f4c3e409ccdbeaf3476d95c4b552.tar.gz
compcert-kvx-272a5b812b72f4c3e409ccdbeaf3476d95c4b552.zip
Deactivate warning 27 and added back removed code.
The code was mostly there for documentation effort. So warning 27 is deactivated again. Bug 18349
Diffstat (limited to 'cparser/Ceval.ml')
-rw-r--r--cparser/Ceval.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/cparser/Ceval.ml b/cparser/Ceval.ml
index 7a706da2..c3d7eeeb 100644
--- a/cparser/Ceval.ml
+++ b/cparser/Ceval.ml
@@ -80,10 +80,10 @@ let boolean_value v =
let constant = function
| CInt(v, ik, _) -> I (normalize_int v ik)
- | CFloat _ -> raise Notconst
+ | CFloat(v, fk) -> raise Notconst
| CStr s -> S s
| CWStr s -> WS s
- | CEnum(_, v) -> I v
+ | CEnum(id, v) -> I v
let is_signed env ty =
match unroll env ty with
@@ -101,11 +101,11 @@ let cast env ty_to v =
if sizeof_ikind ik >= !config.sizeof_ptr
then v
else raise Notconst
- | TPtr _, I n ->
+ | TPtr(ty, _), I n ->
I (normalize_int n (ptr_t_ikind ()))
- | TPtr _, (S _ | WS _) ->
+ | TPtr(ty, _), (S _ | WS _) ->
v
- | TEnum _, I n ->
+ | TEnum(_, _), I n ->
I (normalize_int n enum_ikind)
| _, _ ->
raise Notconst