0.9.3.30:
[sbcl.git] / src / compiler / mips / subprim.lisp
index 91fef15..1e32827 100644 (file)
@@ -11,7 +11,7 @@
   (:temporary (:scs (descriptor-reg) :from (:argument 0)) ptr)
   (:temporary (:scs (non-descriptor-reg)) temp)
   (:temporary (:scs (any-reg) :type fixnum :to (:result 0) :target result)
-             count)
+              count)
   (:results (result :scs (any-reg descriptor-reg)))
   (:policy :fast-safe)
   (:vop-var vop)
   (:generator 50
     (move ptr object)
     (move count zero-tn)
-    
+
     LOOP
-    
+
     (inst beq ptr null-tn done)
     (inst nop)
-    
+
     (inst and temp ptr lowtag-mask)
     (inst xor temp list-pointer-lowtag)
     (inst bne temp zero-tn not-list)
     (inst nop)
-    
+
     (loadw ptr ptr cons-cdr-slot list-pointer-lowtag)
     (inst b loop)
     (inst addu count count (fixnumize 1))
-    
+
     NOT-LIST
     (cerror-call vop done object-not-list-error ptr)
-    
+
     DONE
     (move result count)))
-       
+
 
 (define-static-fun length (object) :translate length)