0.pre7.129:
[sbcl.git] / src / compiler / aliencomp.lisp
index 80176a6..d2a98d5 100644 (file)
     (typecase alien-type
       (alien-pointer-type
        (when (cdr indices)
-        (abort-ir1-transform "too many indices for pointer deref: ~D"
+        (abort-ir1-transform "too many indices for pointer deref: ~W"
                              (length indices)))
        (let ((element-type (alien-pointer-type-to alien-type)))
         (if indices
   (let ((alien-node (continuation-use alien)))
     (typecase alien-node
       (combination
-       (extract-function-args alien '%sap-alien 2)
+       (extract-fun-args alien '%sap-alien 2)
        '(lambda (sap type)
          (declare (ignore type))
          sap))
        (unless (and (constant-continuation-p inside-amount)
                     (not (minusp (continuation-value inside-amount))))
          (give-up-ir1-transform)))))
-  (extract-function-args value 'ash 2)
+  (extract-fun-args value 'ash 2)
   '(lambda (value amount1 amount2)
      (ash value (+ amount1 amount2))))
 \f
       (let ((arg-types (alien-fun-type-arg-types alien-type)))
        (unless (= (length args) (length arg-types))
          (abort-ir1-transform
-          "wrong number of arguments; expected ~D, got ~D"
+          "wrong number of arguments; expected ~W, got ~W"
           (length arg-types)
           (length args)))
        (collect ((params) (deports))