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.9-55-g48b6f1


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-55-g48b6f15
Date: Sun, 04 Aug 2013 23:58:44 +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=48b6f151c71cdf22a2eda48429d9bb31143dc98b

The branch, stable-2.0 has been updated
       via  48b6f151c71cdf22a2eda48429d9bb31143dc98b (commit)
      from  afa3c37ddc3682939a793a4798f3b55fc8d658ec (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 48b6f151c71cdf22a2eda48429d9bb31143dc98b
Author: Mark H Weaver <address@hidden>
Date:   Sun Aug 4 19:39:43 2013 -0400

    VM: ASM_ADD and ASM_SUB for x86: clobber _CX not "rcx".
    
    * libguile/vm-i-scheme.c (ASM_ADD, ASM_SUB): Clobber _CX not "rcx".

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

Summary of changes:
 libguile/vm-i-scheme.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/vm-i-scheme.c b/libguile/vm-i-scheme.c
index 4a68682..bcd8134 100644
--- a/libguile/vm-i-scheme.c
+++ b/libguile/vm-i-scheme.c
@@ -262,7 +262,7 @@ VM_DEFINE_FUNCTION (149, ge, "ge?", 2)
                         : /* no outputs */                             \
                         : "r" (x), "r" (y),                            \
                           [vsp] "r" (sp), [tag] "i" (scm_tc2_int)      \
-                        : "rcx", "memory", "cc"                        \
+                        : _CX, "memory", "cc"                          \
                         : slow_add);                                   \
       NEXT;                                                            \
     }                                                                  \
@@ -280,7 +280,7 @@ VM_DEFINE_FUNCTION (149, ge, "ge?", 2)
                         : /* no outputs */                             \
                         : "r" (x), "r" (y),                            \
                           [vsp] "r" (sp), [tag] "i" (scm_tc2_int)      \
-                        : "rcx", "memory", "cc"                        \
+                        : _CX, "memory", "cc"                          \
                         : slow_sub);                                   \
       NEXT;                                                            \
     }                                                                  \


hooks/post-receive
-- 
GNU Guile



reply via email to

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