Clean up %more-arg-values.
[sbcl.git] / src / compiler / mips / values.lisp
index a04921b..da85978 100644 (file)
 ;;; as function arguments.
 (define-vop (%more-arg-values)
   (:args (context :scs (descriptor-reg any-reg) :target src)
-         (skip :scs (any-reg zero immediate))
          (num :scs (any-reg) :target count))
-  (:arg-types * positive-fixnum positive-fixnum)
+  (:arg-types * positive-fixnum)
   (:temporary (:sc any-reg :from (:argument 0)) src)
   (:temporary (:sc any-reg :from (:argument 2)) dst)
   (:temporary (:sc descriptor-reg :from (:argument 1)) temp)
   (:results (start :scs (any-reg))
             (count :scs (any-reg)))
   (:generator 20
-    (sc-case skip
-      (zero
-       (move src context))
-      (immediate
-       (inst addu src context (* (tn-value skip) n-word-bytes)))
-      (any-reg
-       (inst addu src context skip)))
+    (move src context)
     (move count num)
     (inst beq num done)
     (move start csp-tn t)