X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcompiler%2Fhppa%2Fshow.lisp;h=52d800c66bd05efc28e71ff60a22cd95bd98c043;hb=5045e828e995391a9bbcfe737eb09e42861bab82;hp=20b36f8f39a1690302bd7e22fbaecbb1f67357e1;hpb=8a19c6876412b8ad1cf729297c2a373d63a0d0ec;p=sbcl.git diff --git a/src/compiler/hppa/show.lisp b/src/compiler/hppa/show.lisp index 20b36f8..52d800c 100644 --- a/src/compiler/hppa/show.lisp +++ b/src/compiler/hppa/show.lisp @@ -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) @@ -17,15 +17,15 @@ (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))))