0.9.6.32:
[sbcl.git] / src / compiler / sparc / debug.lisp
index 728fe57..33e1746 100644 (file)
@@ -41,7 +41,7 @@
   (:translate sb!kernel:stack-ref)
   (:policy :fast-safe)
   (:args (sap :scs (sap-reg))
-        (offset :scs (any-reg)))
+         (offset :scs (any-reg)))
   (:arg-types system-area-pointer positive-fixnum)
   (:results (result :scs (descriptor-reg)))
   (:result-types *)
@@ -52,8 +52,8 @@
   (:translate sb!kernel:%set-stack-ref)
   (:policy :fast-safe)
   (:args (sap :scs (sap-reg))
-        (offset :scs (any-reg))
-        (value :scs (descriptor-reg) :target result))
+         (offset :scs (any-reg))
+         (value :scs (descriptor-reg) :target result))
   (:arg-types system-area-pointer positive-fixnum *)
   (:results (result :scs (descriptor-reg)))
   (:result-types *)
   (:variant-vars lowtag)
   (:generator 5
     (let ((bogus (gen-label))
-         (done (gen-label)))
+          (done (gen-label)))
       (loadw temp thing 0 lowtag)
       (inst srl temp n-widetag-bits)
       (inst cmp temp)
       (inst b :eq bogus)
       (inst sll temp (1- (integer-length n-word-bytes)))
       (unless (= lowtag other-pointer-lowtag)
-       (inst add temp (- lowtag other-pointer-lowtag)))
+        (inst add temp (- lowtag other-pointer-lowtag)))
       (inst sub code thing temp)
       (emit-label done)
       (assemble (*elsewhere*)
-       (emit-label bogus)
-       (inst b done)
-       (move code null-tn)))))
+        (emit-label bogus)
+        (inst b done)
+        (move code null-tn)))))
 
 (define-vop (code-from-lra code-from-mumble)
   (:translate lra-code-header)