X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdebug-int.lisp;h=76aaea45dc01dcbba6bfeb00f95f1392a04314cc;hb=2da80a5263e44a824675283340b2253db2348f5e;hp=270c9d9b8e17f0f25bb3d55c31d928ddd7cd5ea4;hpb=3106f4c4d34c484331fb30b8b10a1dcac87bf8d0;p=sbcl.git diff --git a/src/code/debug-int.lisp b/src/code/debug-int.lisp index 270c9d9..76aaea4 100644 --- a/src/code/debug-int.lisp +++ b/src/code/debug-int.lisp @@ -3291,14 +3291,3 @@ ;; (There used to be more cases back before sbcl-0.7.0, when ;; we did special tricks to debug the IR1 interpreter.) )) - -(defun print-code-locations (function) - (let ((debug-fun (fun-debug-fun function))) - (do-debug-fun-blocks (block debug-fun) - (do-debug-block-locations (loc block) - (fill-in-code-location loc) - (format t "~S code location at ~W" - (compiled-code-location-kind loc) - (compiled-code-location-pc loc)) - (sb!debug::print-code-location-source-form loc 0) - (terpri)))))