Fix make-array transforms.
[sbcl.git] / src / assembly / x86 / array.lisp
1 ;;;; various array operations that are too expensive (in space) to do
2 ;;;; inline
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!VM")
14 \f
15 ;;;; Note: On other platforms ALLOCATE-VECTOR is an assembly routine,
16 ;;;; but on X86 it is a VOP.
17
18 ;;;; Note: CMU CL had assembly language primitives for hashing strings,
19 ;;;; but SBCL doesn't.