X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fgeneric%2Finterr.lisp;h=9ff81d3f1b96c3bb0a52f96c7948afec8ff49860;hb=9c510b74eca61bbcc2014dc2b1d02049dff50508;hp=fd992abdd3cd3ef5bbba2816175ff0a6d74d1600;hpb=f1ffbf976aaa50b7b22f126b97e34afe06a91210;p=sbcl.git diff --git a/src/compiler/generic/interr.lisp b/src/compiler/generic/interr.lisp index fd992ab..9ff81d3 100644 --- a/src/compiler/generic/interr.lisp +++ b/src/compiler/generic/interr.lisp @@ -131,6 +131,9 @@ #!+long-float (object-not-complex-long-float "Object is not of type (COMPLEX LONG-FLOAT).") + #!+sb-simd-pack + (object-not-simd-pack + "Object is not of type SIMD-PACK.") (object-not-weak-pointer "Object is not a WEAK-POINTER.") (object-not-instance @@ -145,13 +148,16 @@ "Object layout is invalid. (indicates obsolete instance)") (object-not-complex-vector "Object is not a complex (non-SIMPLE-ARRAY) vector.") + (tls-exhausted + "Thread local storage exhausted.") . #.(map 'list (lambda (saetp) (list (symbolicate "OBJECT-NOT-" (sb!vm:saetp-primitive-type-name saetp)) (format nil "Object is not of type ~A." - (specifier-type - `(simple-array ,(sb!vm:saetp-specifier saetp) (*)))))) + (type-specifier + (specifier-type + `(simple-array ,(sb!vm:saetp-specifier saetp) (*))))))) sb!vm:*specialized-array-element-type-properties*))