1.0.22.5: teach DISASSEMBLE about %METHOD-FUNCTIONs
[sbcl.git] / src / compiler / hppa / show.lisp
index 20b36f8..52d800c 100644 (file)
@@ -7,9 +7,9 @@
   (:save-p t)
   (:temporary (:sc non-descriptor-reg :offset cfunc-offset) cfunc)
   (:temporary (:sc non-descriptor-reg :offset nl0-offset :from (:argument 0))
-             arg)
+              arg)
   (:temporary (:sc non-descriptor-reg :offset nl4-offset :to (:result 0))
-             res)
+              res)
   (:temporary (:sc control-stack :offset nfp-save-offset) nfp-save)
   (:temporary (:scs (non-descriptor-reg)) temp)
   (:vop-var vop)
     (let ((cur-nfp (current-nfp-tn vop)))
       (move object arg)
       (when cur-nfp
-       (store-stack-tn nfp-save cur-nfp))
+        (store-stack-tn nfp-save cur-nfp))
       ;; Allocate 64 bytes, the minimum stack size.
       (inst addi 64 nsp-tn nsp-tn)
       (inst li (make-fixup "debug_print" :foreign) cfunc)
       (let ((fixup (make-fixup "call_into_c" :foreign)))
-       (inst ldil fixup temp)
-       (inst ble fixup c-text-space temp :nullify t)
-       (inst nop))
+        (inst ldil fixup temp)
+        (inst ble fixup c-text-space temp :nullify t)
+        (inst nop))
       (inst addi -64 nsp-tn nsp-tn)
       (when cur-nfp
-       (load-stack-tn cur-nfp nfp-save))
+        (load-stack-tn cur-nfp nfp-save))
       (move res result))))