0.pre7.14.flaky4:
[sbcl.git] / src / compiler / x86 / call.lisp
index 04d0f62..67f5215 100644 (file)
@@ -33,7 +33,7 @@
   (declare (ignore standard))
   (make-wired-tn (primitive-type-or-lose 'system-area-pointer)
                 sap-stack-sc-number return-pc-save-offset))
-;;; If standard is true, then use the standard (full call) location,
+;;; If STANDARD is true, then use the standard (full call) location,
 ;;; otherwise use any legal location.
 ;;;
 ;;; No problems.
            for tn-ref = (tn-ref-across 2nd-tn-ref)
            then (tn-ref-across tn-ref)
            for count from 2 below register-arg-count
-           do count (inst mov (tn-ref-tn tn-ref) 2nd-tn))))
+           do (inst mov (tn-ref-tn tn-ref) 2nd-tn))))
       (inst mov ebx-tn esp-tn)
       (emit-label regs-defaulted)
       (inst mov esp-tn ebx-tn)))
 ;;; more arg, but there is no new-FP, since the arguments have been set up in
 ;;; the current frame.
 (macrolet ((define-full-call (name named return variable)
-           (assert (not (and variable (eq return :tail))))
+           (aver (not (and variable (eq return :tail))))
            `(define-vop (,name
                          ,@(when (eq return :unknown)
                              '(unknown-values-receiver)))