guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 01/01: Fix bug #25492


From: Daniel Llorens
Subject: [Guile-commits] 01/01: Fix bug #25492
Date: Tue, 7 Feb 2017 11:33:49 +0000 (UTC)

lloda pushed a commit to branch master
in repository guile.

commit a0028723da283d39e5ab4e43f8934506a917498b
Author: Daniel Llorens <address@hidden>
Date:   Tue Feb 7 12:14:15 2017 +0100

    Fix bug #25492
    
    * libguile/vm-engine.c (BR_F64_ARITHMETIC): Fix type.
---
 libguile/vm-engine.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/vm-engine.c b/libguile/vm-engine.c
index 6848406..c9a9cec 100644
--- a/libguile/vm-engine.c
+++ b/libguile/vm-engine.c
@@ -361,7 +361,7 @@
 #define BR_F64_ARITHMETIC(crel)                                         \
   {                                                                     \
     scm_t_uint32 a, b;                                                  \
-    scm_t_uint64 x, y;                                                  \
+    double x, y;                                                        \
     UNPACK_24 (op, a);                                                  \
     UNPACK_24 (ip[1], b);                                               \
     x = SP_REF_F64 (a);                                                 \



reply via email to

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