summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-05-09 11:57:10 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-05-09 11:57:10 +0000
commit9c03226a7efab5642efd75a385c4ca439e3dde74 (patch)
treeb0bfd7a681ad98c682b8e3d290281e50bcfb9c92 /lib
parente4585d1b9523c174c75518546513e8184587639d (diff)
Fewer float axioms.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1343 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'lib')
-rw-r--r--lib/Floats.v6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Floats.v b/lib/Floats.v
index 5c20cdd..c9dda09 100644
--- a/lib/Floats.v
+++ b/lib/Floats.v
@@ -70,16 +70,14 @@ Axiom cmp_le_lt_eq:
Axiom cmp_ge_gt_eq:
forall f1 f2, cmp Cge f1 f2 = cmp Cgt f1 f2 || cmp Ceq f1 f2.
-Axiom bits_of_double_of_bits:
- forall n, bits_of_double (double_of_bits n) = n.
Axiom double_of_bits_of_double:
forall f, double_of_bits (bits_of_double f) = f.
-Axiom bits_of_single_of_bits:
- forall n, bits_of_single (single_of_bits n) = n.
Axiom single_of_bits_of_single:
forall f, single_of_bits (bits_of_single f) = singleoffloat f.
Axiom bits_of_singleoffloat:
forall f, bits_of_single (singleoffloat f) = bits_of_single f.
+Axiom singleoffloat_of_bits:
+ forall b, singleoffloat (single_of_bits b) = single_of_bits b.
End Float.