aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Ceval.ml
diff options
context:
space:
mode:
authorMichael Schmidt <github@mschmidt.me>2015-10-14 15:07:48 +0200
committerMichael Schmidt <github@mschmidt.me>2015-10-14 15:07:48 +0200
commit60ab550a952c3d9719b2a91ec90c9b58769f6717 (patch)
tree523cf4eb5a35594b16a297b4bd7e29157f42b0fc /cparser/Ceval.ml
parenta479c280441b91007c379b0b63b907926d54f930 (diff)
downloadcompcert-60ab550a952c3d9719b2a91ec90c9b58769f6717.tar.gz
compcert-60ab550a952c3d9719b2a91ec90c9b58769f6717.zip
bug 17392: remove trailing whitespace in source files
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 ba7cdabc..74b535d4 100644
--- a/cparser/Ceval.ml
+++ b/cparser/Ceval.ml
@@ -124,7 +124,7 @@ let comparison env direction ptraction tyop ty1 v1 ty2 v2 =
(* tyop = type at which the comparison is done *)
let b =
match cast env tyop ty1 v1, cast env tyop ty2 v2 with
- | I n1, I n2 ->
+ | I n1, I n2 ->
if is_signed env tyop
then direction (compare n1 n2) 0
else direction (int64_unsigned_compare n1 n2) 0 (* including pointers *)
@@ -162,7 +162,7 @@ let binop env op tyop tyres ty1 v1 ty2 v2 =
end
| Odiv ->
begin match cast env tyop ty1 v1, cast env tyop ty2 v2 with
- | I n1, I n2 ->
+ | I n1, I n2 ->
if n2 = 0L then raise Notconst else
if is_signed env tyop then I (Int64.div n1 n2)
else I (int64_unsigned_div n1 n2)
@@ -170,7 +170,7 @@ let binop env op tyop tyres ty1 v1 ty2 v2 =
end
| Omod ->
begin match v1, v2 with
- | I n1, I n2 ->
+ | I n1, I n2 ->
if n2 = 0L then raise Notconst else
if is_signed env tyop then I (Int64.rem n1 n2)
else I (int64_unsigned_mod n1 n2)
@@ -220,11 +220,11 @@ let binop env op tyop tyres ty1 v1 ty2 v2 =
| Ocomma ->
v2
| Ologand ->
- if boolean_value v1
+ if boolean_value v1
then if boolean_value v2 then I 1L else I 0L
else I 0L
| Ologor ->
- if boolean_value v1
+ if boolean_value v1
then I 1L
else if boolean_value v2 then I 1L else I 0L
| _ -> raise Notconst