X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fgeneric%2Finterr.lisp;h=9ff81d3f1b96c3bb0a52f96c7948afec8ff49860;hb=2372ff8da6e1099e8840b0815d75c414fff2f302;hp=a7336528db0399edab8db7f5931adcbb9d97e33e;hpb=0bb093a109ec94a021e413bd0ae6ae7fdf54d774;p=sbcl.git diff --git a/src/compiler/generic/interr.lisp b/src/compiler/generic/interr.lisp index a733652..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 @@ -153,7 +156,8 @@ (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*))