guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-146-gcba52


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-146-gcba521f
Date: Wed, 06 Mar 2013 20:38:04 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=cba521fe42484b6689769a484408de56545d8678

The branch, stable-2.0 has been updated
       via  cba521fe42484b6689769a484408de56545d8678 (commit)
      from  a2dead1b0fb6523598e3acbbe91127eaf47fe98c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cba521fe42484b6689769a484408de56545d8678
Author: Mark H Weaver <address@hidden>
Date:   Mon Mar 4 18:37:23 2013 -0500

    Verify that FLT_RADIX is 2.
    
    * libguile/numbers.c: Trigger a compilation error if FLT_RADIX is not 2.
      This has long been assumed by code in numbers.c.

-----------------------------------------------------------------------

Summary of changes:
 libguile/numbers.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/libguile/numbers.c b/libguile/numbers.c
index 9c28a79..393cf64 100644
--- a/libguile/numbers.c
+++ b/libguile/numbers.c
@@ -81,6 +81,9 @@
 #define M_PI       3.14159265358979323846
 #endif
 
+/* FIXME: We assume that FLT_RADIX is 2 */
+verify (FLT_RADIX == 2);
+
 typedef scm_t_signed_bits scm_t_inum;
 #define scm_from_inum(x) (scm_from_signed_integer (x))
 


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]