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.5-198-g13e3d


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.5-198-g13e3d3d
Date: Thu, 05 Jul 2012 21:26:47 +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=13e3d3d95dcb6c9cb4b3d69129d6b5fd9ad2e65a

The branch, stable-2.0 has been updated
       via  13e3d3d95dcb6c9cb4b3d69129d6b5fd9ad2e65a (commit)
      from  b8a5606b1018578f5fd887e30adc9d6dd1160137 (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 13e3d3d95dcb6c9cb4b3d69129d6b5fd9ad2e65a
Author: Andy Wingo <address@hidden>
Date:   Thu Jul 5 23:26:38 2012 +0200

    fix `vector' instruction emission for big vectors
    
    * module/language/glil/compile-assembly.scm (dump-constants): Only use
      the `vector' instruction for vectors whose length can fit in 16 bits.
    
      Fixes http://bugs.gnu.org/11087.

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

Summary of changes:
 module/language/glil/compile-assembly.scm |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/module/language/glil/compile-assembly.scm 
b/module/language/glil/compile-assembly.scm
index a51fd58..83a5007 100644
--- a/module/language/glil/compile-assembly.scm
+++ b/module/language/glil/compile-assembly.scm
@@ -841,6 +841,7 @@
           (values `(,@car-code ,@cdr-code (cons))
                   (1+ addr)))))
      ((and (vector? x)
+           (<= (vector-length x) #xffff)
            (equal? (array-shape x) (list (list 0 (1- (vector-length x))))))
       (receive (codes addr)
           (vector-fold2 (lambda (x codes addr)


hooks/post-receive
-- 
GNU Guile



reply via email to

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