X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ffloat.impure.lisp;h=04609a48cc23f429e17818fd3e902874f46fa90c;hb=d4d6c4b16a3655ce99a87d43f411391363531260;hp=e32a6d9fcdd7c72e93a3622adb71bcd7e998ce8c;hpb=891f4de22b8a291d76d2e74e2a775e4bb659921f;p=sbcl.git diff --git a/tests/float.impure.lisp b/tests/float.impure.lisp index e32a6d9..04609a4 100644 --- a/tests/float.impure.lisp +++ b/tests/float.impure.lisp @@ -114,5 +114,8 @@ (assert (= (test 1.0d0) 2.0d0)) -;;; success -(quit :unix-status 104) +(deftype myarraytype (&optional (length '*)) + `(simple-array double-float (,length))) +(defun new-pu-label-from-pu-labels (array) + (setf (aref (the myarraytype array) 0) + sb-ext:double-float-positive-infinity))