Obvious patch by Christophe, reported by Eric Marsden.
(:generator 5
(move dword-index index)
(inst shr dword-index 1)
- (inst movss (make-ea-for-float-ref object index offset 4) value)
+ (inst movss (make-ea-for-float-ref object dword-index offset 4) value)
(unless (location= result value)
(inst movss result value))))
(simple-vector s))
(copy-seq s)))
(vector 1 2 3 4)))))
+
+;;; bug in adding DATA-VECTOR-REF-WITH-OFFSET to x86-64
+(assert (not (mismatch #(1.0f0 2.0f0) (make-array 2 :element-type 'single-float :initial-contents (list 1.0f0 2.0f0)))))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.5.41"
+"1.0.5.42"