From 14a9bb4b267eeead8cd9503ee19e860a8bc0d763 Mon Sep 17 00:00:00 2001 From: xleroy Date: Thu, 28 Oct 2010 14:56:39 +0000 Subject: 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 --- common/Values.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common') diff --git a/common/Values.v b/common/Values.v index af242c9..ceff333 100644 --- a/common/Values.v +++ b/common/Values.v @@ -117,13 +117,13 @@ Definition absf (v: val) : val := Definition intoffloat (v: val) : val := match v with - | Vfloat f => Vint (Float.intoffloat f) + | Vfloat f => match Float.intoffloat f with Some n => Vint n | None => Vundef end | _ => Vundef end. Definition intuoffloat (v: val) : val := match v with - | Vfloat f => Vint (Float.intuoffloat f) + | Vfloat f => match Float.intuoffloat f with Some n => Vint n | None => Vundef end | _ => Vundef end. -- cgit v1.2.3