X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-misc.lisp;h=98e818a4ce18a90230b66c5c52801776249e41a3;hb=959057baab99d4328fc386aee3fcc812f5fcb3ed;hp=9519b6e86f8582f072878d742bb58b6b5239bb8e;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/code/target-misc.lisp b/src/code/target-misc.lisp index 9519b6e..98e818a 100644 --- a/src/code/target-misc.lisp +++ b/src/code/target-misc.lisp @@ -28,11 +28,6 @@ (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)))))))) @@ -122,3 +117,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))