Micro-optimize vector creation.
authorStas Boukarev <stassats@gmail.com>
Sat, 30 Nov 2013 16:12:22 +0000 (20:12 +0400)
committerStas Boukarev <stassats@gmail.com>
Sat, 30 Nov 2013 16:52:26 +0000 (20:52 +0400)
transform-make-array-vector expanded into
(allocate-vector typecode (the index length) (ceiling length x))
but the transform applied to CEILING before it was known that LENGTH
is of type INDEX was producing bad results,
(ceiling (truly-the index length) x) solves that.


No differences found