* bug fix: optimizations to MAKE-INSTANCE with literal list initargs no
longer cause infinite loops (on circular data) or violate eqlity
constraints. (lp#1099708)
+ * bug fix: FIRST was not being open coded. (regression from 1.1.0)
changes in sbcl-1.1.3 relative to sbcl-1.1.2:
* enhancement: warnings about bad locale settings, LANG, LC_CTYPE, etc.
(sb-c::mask-signed-field 31 (- x 1055131947))))))
(assert (= (funcall fun 10038) -1055121909))))
-(with-rest (:name :first-open-coded)
+(with-test (:name :first-open-coded)
(let ((fun (compile nil `(lambda (x) (first x)))))
(assert (not (ctu:find-named-callees fun)))))
-(with-rest (:name :second-open-coded)
+(with-test (:name :second-open-coded)
(let ((fun (compile nil `(lambda (x) (second x)))))
(assert (not (ctu:find-named-callees fun)))))