X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcode%2Ftarget-misc.lisp;h=e5680f59ff0b6e16a06f1abe58dd11c1d8b91341;hb=031ae238d37250e935dabaf2a3efb6e0305dd3e7;hp=946c682e7ee338aa5bd3af27c230ad996defa9c6;hpb=a530bbe337109d898d5b4a001fc8f1afa3b5dc39;p=sbcl.git diff --git a/src/code/target-misc.lisp b/src/code/target-misc.lisp index 946c682..e5680f5 100644 --- a/src/code/target-misc.lisp +++ b/src/code/target-misc.lisp @@ -14,9 +14,6 @@ (in-package "SB!IMPL") -(file-comment - "$Header$") - ;;; cobbled from stuff in describe.lisp. (defun function-doc (x) (let ((name @@ -27,15 +24,13 @@ (%function-name x)) (#.sb!vm:funcallable-instance-header-type (typecase x + ;; FIXME: byte compiler to go away completely + #| (byte-function (sb!c::byte-function-name x)) (byte-closure (sb!c::byte-function-name (byte-closure-function x))) - (sb!eval:interpreted-function - (multiple-value-bind (exp closure-p dname) - (sb!eval:interpreted-function-lambda-expression x) - (declare (ignore exp closure-p)) - dname)) + |# (t ;; funcallable-instance (%function-name (funcallable-instance-function x)))))))) @@ -125,3 +120,6 @@ (setf *standard-output* (third old-streams)) (setf *error-output* (fourth old-streams))))) (values)) + +(defun %byte-blt (src src-start dst dst-start dst-end) + (%byte-blt src src-start dst dst-start dst-end))