guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. v2.1.0-147-g062888f


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, master, updated. v2.1.0-147-g062888f
Date: Mon, 12 Aug 2013 17:54:19 +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=062888f7bbb192f758cd7179a4c0c3898e805371

The branch, master has been updated
       via  062888f7bbb192f758cd7179a4c0c3898e805371 (commit)
      from  1160e2d94e6a53e4509f81ff08798655db9cae26 (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 062888f7bbb192f758cd7179a4c0c3898e805371
Author: Mark H Weaver <address@hidden>
Date:   Mon Aug 12 13:47:35 2013 -0400

    RTL VM: Fix SCM_PACK_RTL_* macros.
    
    * libguile/instructions.h (SCM_PACK_RTL_8_8_8): Fix typo.
      (SCM_PACK_RTL_16_8): Fix erroneous shift offset.

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

Summary of changes:
 libguile/instructions.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/instructions.h b/libguile/instructions.h
index bf27afa..81e7572 100644
--- a/libguile/instructions.h
+++ b/libguile/instructions.h
@@ -29,9 +29,9 @@ enum scm_rtl_opcode
 #undef ENUM
   };
 
-#define SCM_PACK_RTL_8_8_8(op,a,b,c) ((op) | ((a) << 8) | ((b) << 16) | ((d) 
<< 24))
+#define SCM_PACK_RTL_8_8_8(op,a,b,c) ((op) | ((a) << 8) | ((b) << 16) | ((c) 
<< 24))
 #define SCM_PACK_RTL_8_16(op,a,b) ((op) | ((a) << 8) | ((b) << 16))
-#define SCM_PACK_RTL_16_8(op,a,b) ((op) | ((a) << 16) | ((b) << 24))
+#define SCM_PACK_RTL_16_8(op,a,b) ((op) | ((a) << 8) | ((b) << 24))
 #define SCM_PACK_RTL_24(op,a) ((op) | ((a) << 8))
 
 #define SCM_UNPACK_RTL_8_8_8(op,a,b,c)    \


hooks/post-receive
-- 
GNU Guile



reply via email to

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