X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Fshow.lisp;h=4d291f10c39ed28f498d48acc5e01de102926426;hb=40e3ba03d0e1b824e4d1ae75d74246b975b70964;hp=c2076b20e285e5fd672de9c44408d6e43ceb2045;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/compiler/x86/show.lisp b/src/compiler/x86/show.lisp index c2076b2..4d291f1 100644 --- a/src/compiler/x86/show.lisp +++ b/src/compiler/x86/show.lisp @@ -17,16 +17,16 @@ (define-vop (print) (:args (object :scs (descriptor-reg any-reg))) (:temporary (:sc unsigned-reg - :offset eax-offset - :target result - :from :eval - :to (:result 0)) - eax) + :offset eax-offset + :target result + :from :eval + :to (:result 0)) + eax) (:results (result :scs (descriptor-reg))) (:save-p t) (:generator 100 (inst push object) - (inst lea eax (make-fixup (extern-alien-name "debug_print") :foreign)) - (inst call (make-fixup (extern-alien-name "call_into_c") :foreign)) - (inst add esp-tn word-bytes) + (inst lea eax (make-fixup "debug_print" :foreign)) + (inst call (make-fixup "call_into_c" :foreign)) + (inst add esp-tn n-word-bytes) (move result eax)))