guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch lloda-array-support updated (b4153d6 -> 1445204)


From: Daniel Llorens
Subject: [Guile-commits] branch lloda-array-support updated (b4153d6 -> 1445204)
Date: Thu, 30 Jun 2016 11:05:16 +0000 (UTC)

lloda pushed a change to branch lloda-array-support
in repository guile.

  discards  b4153d6   Remove uniform-array-read!, uniform-array-write from the 
manual
  discards  d3abafc   Remove commented stack version of 
scm_array_for_each_cell()
  discards  327e6c9   Fix pool version of scm_array_for_each_cell by aligning 
pointers
  discards  018e5e0   Fix a corner case with empty arrays in 
(array-for-each-cell)
  discards  c1a76b9   Clean up (array-for-each-cell)
  discards  63229d9   Avoid variable stack use in scm_array_for_each_cell()
  discards  fe45e37   Special case for array-map! with three arguments
  discards  ae7a88d   New export (array-for-each-cell-in-order)
  discards  248c1a3   Draft documentation for (array-for-each-cell)
  discards  8128f37   Draft of (array-for-each-cell)
  discards  0005569   Do not use array handles in scm_vector
  discards  cd1d697   Remove deprecated and unused generalized-vector functions
  discards  8127de4   Speed up for multi-arg cases of scm_ramap functions
  discards  a015490   Remove deprecated array functions
  discards  f93d8dd   Fix compilation of rank 0 typed array literals
  discards  f32d28e   Don't use array handles in scm_c_array_rank
  discards  777794d   Rename array-set-from!, scm_array_set_from_x to 
array-amend!, scm_array_amend_x
  discards  8295b68   Tests & doc for array-from, array-from*, array-set-from!
  discards  fd539d3   New functions array-from, array-from*, array-set-from!
  discards  0e5659e   Compile in C99 mode
  discards  6de9ea3   Reuse SCM_BYTEVECTOR_TYPED_LENGTH in scm_array_get_handle
  discards  541154a   Unuse array 'contiguous' flag
  discards  c285fbd   Remove scm_from_contiguous_array
  discards  cd33f3f   Avoid unneeded internal use of array handles
      adds  73714b8   Add documentation pointer from getopt-long to SRFI-37.
      adds  31c76f1   Fix duplicate case in peval
      adds  3e719e0   Add -Wmacro-use-before-definition
      adds  d5d7e30   Fix 'monitor' macro.
      adds  cce3ea2   Do not track some test-suite files
      adds  ed39782   Fixing GUILE_PROGS wrong versioning checks
      adds  e264117   Fix uninstalled-env bug that put prebuilt/ in front
      adds  a62d46f   psyntax can trace expand-time changes to the current 
module
      adds  516f70f   tests-suite: resurrect invoking check-guile --coverage.
       new  7f17738   Avoid unneeded internal use of array handles
       new  dff3e91   Remove scm_from_contiguous_array
       new  c4fdcc6   Unuse array 'contiguous' flag
       new  dc56398   Reuse SCM_BYTEVECTOR_TYPED_LENGTH in scm_array_get_handle
       new  7e44709   Compile in C99 mode
       new  ee960e4   New functions array-from, array-from*, array-set-from!
       new  d33dd7e   Tests & doc for array-from, array-from*, array-set-from!
       new  1d91ffa   Rename array-set-from!, scm_array_set_from_x to 
array-amend!, scm_array_amend_x
       new  99be399   Don't use array handles in scm_c_array_rank
       new  0ade9b3   Fix compilation of rank 0 typed array literals
       new  de4b776   Remove deprecated array functions
       new  cac6aa2   Speed up for multi-arg cases of scm_ramap functions
       new  84b3a87   Remove deprecated and unused generalized-vector functions
       new  ffa7f12   Do not use array handles in scm_vector
       new  8c5be6a   Draft of (array-for-each-cell)
       new  ad39ff6   Draft documentation for (array-for-each-cell)
       new  7d38516   New export (array-for-each-cell-in-order)
       new  1057644   Special case for array-map! with three arguments
       new  1849425   Avoid variable stack use in scm_array_for_each_cell()
       new  9e6c15a   Clean up (array-for-each-cell)
       new  91a1965   Fix a corner case with empty arrays in 
(array-for-each-cell)
       new  2825388   Fix pool version of scm_array_for_each_cell by aligning 
pointers
       new  34280dd   Remove commented stack version of 
scm_array_for_each_cell()
       new  1445204   Remove uniform-array-read!, uniform-array-write from the 
manual

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b4153d6)
            \
             N -- N -- N   refs/heads/lloda-array-support (1445204)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 24 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                              |    1 +
 am/guilec                               |    2 +-
 doc/ref/mod-getopt-long.texi            |    6 +
 meta/guile.m4                           |   12 +-
 meta/uninstalled-env.in                 |    9 +-
 module/ice-9/boot-9.scm                 |    4 +-
 module/ice-9/psyntax-pp.scm             |  219 ++++++++++++++++---------------
 module/ice-9/psyntax.scm                |   11 +-
 module/ice-9/threads.scm                |   21 ++-
 module/language/tree-il/analyze.scm     |   70 +++++++++-
 module/language/tree-il/compile-cps.scm |   11 +-
 module/language/tree-il/peval.scm       |    1 -
 module/system/base/message.scm          |    6 +
 test-suite/guile-test                   |    2 +-
 14 files changed, 241 insertions(+), 134 deletions(-)



reply via email to

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