summaryrefslogtreecommitdiff
path: root/backend/Cminor.v
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-10-28 14:56:39 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-10-28 14:56:39 +0000
commit14a9bb4b267eeead8cd9503ee19e860a8bc0d763 (patch)
treec70dda532a974a7b62969c6b199b80d65784dc91 /backend/Cminor.v
parentb54721f58c2ecb65ce554d8b34f214d5121a2b0c (diff)
Float.intoffloat and Float.intuoffloat are now partial functions.
(May fail if float is too big to be converted.) git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1544 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'backend/Cminor.v')
-rw-r--r--backend/Cminor.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/Cminor.v b/backend/Cminor.v
index 4e57d3c..a3a166c 100644
--- a/backend/Cminor.v
+++ b/backend/Cminor.v
@@ -240,8 +240,8 @@ Definition eval_unop (op: unary_operation) (arg: val) : option val :=
| Onegf, Vfloat f1 => Some (Vfloat (Float.neg f1))
| Oabsf, Vfloat f1 => Some (Vfloat (Float.abs f1))
| Osingleoffloat, _ => Some (Val.singleoffloat arg)
- | Ointoffloat, Vfloat f1 => Some (Vint (Float.intoffloat f1))
- | Ointuoffloat, Vfloat f1 => Some (Vint (Float.intuoffloat f1))
+ | Ointoffloat, Vfloat f1 => option_map Vint (Float.intoffloat f1)
+ | Ointuoffloat, Vfloat f1 => option_map Vint (Float.intuoffloat f1)
| Ofloatofint, Vint n1 => Some (Vfloat (Float.floatofint n1))
| Ofloatofintu, Vint n1 => Some (Vfloat (Float.floatofintu n1))
| _, _ => None